Home
last modified time | relevance | path

Searched full:tk (Results 1 – 25 of 4141) sorted by relevance

12345678910>>...166

/aosp_15_r20/external/python/cpython3/Lib/tkinter/
D__init__.py1 """Wrapper functions for Tcl/Tk.
4 control of widgets. Toplevel widgets are Tk and Toplevel. Other
11 under Tk.
23 tk = tkinter.Tk()
24 frame = tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
28 button = tkinter.Button(frame,text="Exit",command=tk.destroy)
30 tk.mainloop()
38 import _tkinter # If this fails your Python may not be configured for Tk
124 def _splitdict(tk, v, cut_minus=True, conv=None): argument
132 t = tk.splitlist(v)
[all …]
Dtix.py33 'The Tix Tk extension is unmaintained, and the tkinter.tix wrapper module'
85 This is a mixin class, assumed to be mixed to Tkinter.Tk
86 that supports the self.tk.call method.
99 return self.tk.call('tix', 'addbitmapdir', directory)
106 return self.tk.call('tix', 'cget', option)
128 return self.tk.call(('tix', 'configure') + self._options(cnf))
140 return self.tk.call('tix', 'filedialog', dlgclass)
142 return self.tk.call('tix', 'filedialog')
151 option of the TK and Tix widgets.
153 return self.tk.call('tix', 'getbitmap', name)
[all …]
Dttk.py3 This module provides classes to allow using Tk themed widget set.
6 TIP #48 (http://tip.tcl.tk/48) specified style engine.
35 # if caller passes a Tcl script to tk.call, all the values need to
43 """Formats optdict to a tuple to pass it to tk.call.
80 """Formats mapdict to pass it to tk.call.
113 # Availability: Tk 8.6, Windows XP and Vista.
244 def _list_from_layouttuple(tk, ltuple): argument
247 ltuple = tk.splitlist(ltuple)
266 val = _list_from_layouttuple(tk, val)
272 def _val_or_dict(tk, options, *args): argument
[all …]
/aosp_15_r20/external/python/cpython2/Lib/lib-tk/
DTkinter.py1 """Wrapper functions for Tcl/Tk.
4 control of widgets. Toplevel widgets are Tk and Toplevel. Other
11 under Tk.
23 tk = Tkinter.Tk()
24 frame = Tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
30 tk.mainloop()
37 # Attempt to configure Tcl/Tk without requiring PATH
39 import _tkinter # If this fails your Python may not be configured for Tk
55 # These are not always defined, e.g. not on Win32 with Tk 8.0 :-(
[all …]
DTix.py32 raise ImportError, "This version of Tix.py requires Tk 4.0 or higher"
34 import _tkinter # If this fails your Python may not be configured for Tk
82 This is a mixin class, assumed to be mixed to Tkinter.Tk
83 that supports the self.tk.call method.
96 return self.tk.call('tix', 'addbitmapdir', directory)
103 return self.tk.call('tix', 'cget', option)
125 return self.tk.call(('tix', 'configure') + self._options(cnf))
137 return self.tk.call('tix', 'filedialog', dlgclass)
139 return self.tk.call('tix', 'filedialog')
148 option of the TK and Tix widgets.
[all …]
Dttk.py3 This module provides classes to allow using Tk themed widget set.
6 TIP #48 (http://tip.tcl.tk/48) specified style engine.
31 # Verify if Tk is new enough to not need the Tile package
42 master.tk.eval(
46 master.tk.eval('package require tile') # TclError may be raised here
52 # if caller passes a Tcl script to tk.call, all the values need to
60 """Formats optdict to a tuple to pass it to tk.call.
101 """Formats mapdict to pass it to tk.call.
134 # Availability: Tk 8.6, Windows XP and Vista.
262 def _list_from_layouttuple(tk, ltuple): argument
[all …]
/aosp_15_r20/external/python/cpython3/Tools/unittestgui/
Dunittestgui.py36 import tkinter as tk namespace
213 self.dirVar = tk.StringVar()
217 self.testPatternVar = tk.StringVar()
224 tk.Label(master, text="Top Level Directory").grid(row=0)
225 self.e1 = tk.Entry(master, textvariable=self.dirVar)
227 tk.Button(master, text="...",
230 tk.Label(master, text="Test File Pattern").grid(row=1)
231 self.e2 = tk.Entry(master, textvariable = self.testPatternVar)
253 self.statusVar = tk.StringVar()
256 #tk vars for tracking counts of test result types
[all …]
/aosp_15_r20/external/python/cpython3/Doc/library/
Dtkinter.rst1 :mod:`tkinter` --- Python interface to Tcl/Tk
5 :synopsis: Interface to Tcl/Tk for graphical user interfaces
13 The :mod:`tkinter` package ("Tk interface") is the standard Python interface to
14 the Tcl/Tk GUI toolkit. Both Tk and :mod:`tkinter` are available on most Unix
18 demonstrating a simple Tk interface, letting you know that :mod:`tkinter` is
19 properly installed on your system, and also showing what version of Tcl/Tk is
20 installed, so you can read the Tcl/Tk documentation specific to that version.
22 Tkinter supports a range of Tcl/Tk versions, built either with or
23 without thread support. The official Python binary release bundles Tcl/Tk 8.6
29 additions and changes, and refer to the official Tcl/Tk documentation for
[all …]
/aosp_15_r20/external/python/cpython2/Doc/library/
Dtkinter.rst1 :mod:`Tkinter` --- Python interface to Tcl/Tk
5 :synopsis: Interface to Tcl/Tk for graphical user interfaces
9 The :mod:`Tkinter` module ("Tk interface") is the standard Python interface to
10 the Tk GUI toolkit. Both Tk and :mod:`Tkinter` are available on most Unix
11 platforms, as well as on Windows systems. (Tk itself is not part of Python; it
15 demonstrating a simple Tk interface, letting you know that :mod:`Tkinter` is
16 properly installed on your system, and also showing what version of Tcl/Tk is
17 installed, so you can read the Tcl/Tk documentation specific to that version.
30 The Python Tkinter Topic Guide provides a great deal of information on using Tk
31 from Python and links to other sources of information on Tk.
[all …]
/aosp_15_r20/development/vndk/tools/sourcedr/ninja/
H A Dninja.py228 class TK(object): class
337 (TK.COMMENT, r'#[^\n]*'),
338 (TK.NEWLINE, r'[\r\n]'),
339 (TK.SPACE, r'[ \t]+'),
340 (TK.ESC_NEWLINE, r'\$[\r\n]'),
341 (TK.IDENT, r'[\w_.-]+'),
342 (TK.PIPE2, r'\|\|'),
343 (TK.PIPE, r'\|'),
344 (TK.COLON, r':'),
345 (TK.ASSIGN, r'='),
[all …]
/aosp_15_r20/development/vndk/tools/sourcedr/ninja/tests/
H A Dtest_ninja.py139 self.assertEqual(ninja.TK.EOF, tok.kind)
144 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
148 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
152 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
156 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
161 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
165 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
169 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
174 self.assertEqual(ninja.TK.NEWLINE, tok.kind)
180 self.assertEqual(ninja.TK.SPACE, tok.kind)
[all …]
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/androidx.arch.core_core-common/android_common_apex30/local-combined/
Dandroidx.arch.core_core-common.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/androidx.arch.core_core-common/android_common_apex35/local-combined/
Dandroidx.arch.core_core-common.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/androidx.arch.core_core-common/android_common/local-combined/
Dandroidx.arch.core_core-common.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/
HDcore-common-2.3.0-alpha01.jarMETA-INF/ META-INF/MANIFEST.MF androidx/ androidx/arch/ androidx/ ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/androidx.arch.core_core-common/android_common_apex34/local-combined/
Dandroidx.arch.core_core-common.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/androidx.arch.core_core-common/android_common_apex33/local-combined/
Dandroidx.arch.core_core-common.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/arch/core/core-common/2.3.0-alpha01/androidx.arch.core_core-common/android_common_apex10000/local-combined/
Dandroidx.arch.core_core-common.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/external/python/cpython2/Lib/idlelib/
DWidgetRedirector.py7 Some Tk operations don't normally pass through tkinter. For example, if a
8 character is inserted into a Text widget by pressing a key, a default Tk
9 binding to the widget's 'insert' operation is activated, and the Tk library
13 to do is to hook the Tk 'insert' operation itself. For one thing, we want
21 instance that represents the tk widget.
26 original Tk widget operation.
33 tk: widget.tk, a convenience attribute, probably not needed.
41 self.tk = tk = widget.tk # widget's root
42 w = widget._w # widget's (full) Tk pathname
45 tk.call("rename", w, self.orig)
[all …]
DmacosxSupport.py25 Initializes OS X Tk variant values for
30 ws = root.tk.call('tk', 'windowingsystem')
35 elif 'AppKit' in root.tk.call('winfo', 'server', '.'):
44 Returns True if IDLE is using a native OS X Tk (Cocoa or Carbon).
51 Returns True if IDLE is using a Carbon Aqua Tk (instead of the
52 newer Cocoa Aqua Tk).
59 Returns True if IDLE is using a Cocoa Aqua Tk.
66 Returns True if IDLE is using an OS X X11 Tk.
73 Returns a string warning message if the Tk version in use appears to
75 1. Apple Cocoa-based Tk 8.5.7 shipped with Mac OS X 10.6 is unusable.
[all …]
/aosp_15_r20/external/cronet/net/http/
H A Dtransport_security_state_static.json442 { "name": "google.tk", "policy": "google", "include_subdomains": true },
1525 …{ "name": "adorai.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": tru…
2024 …{ "name": "afp548.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": tru…
2526 …{ "name": "dedeo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true…
2685 …{ "name": "ztan.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true …
3003 …{ "name": "gtanda.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": tru…
3032 …{ "name": "xn--4dbjwf8c.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains…
3037 …{ "name": "xn--ls8hi7a.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains"…
3160 …{ "name": "qgustavor.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": …
3728 …{ "name": "yobst.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true…
[all …]
/aosp_15_r20/external/scapy/scapy/modules/krack/
H A Dcrypto.py137 def gen_TKIP_RC4_key(TSC, TA, TK): argument
141 TK: temporal key
146 assert len(TK) == 16
147 assert all(isinstance(x, (int, long)) for x in TSC + TA + TK)
163 TTAK[0] = _CAST16(TTAK[0] + _SBOX16(TTAK[4] ^ _MK16(TK[1 + j], TK[0 + j])))
164 TTAK[1] = _CAST16(TTAK[1] + _SBOX16(TTAK[0] ^ _MK16(TK[5 + j], TK[4 + j])))
165 TTAK[2] = _CAST16(TTAK[2] + _SBOX16(TTAK[1] ^ _MK16(TK[9 + j], TK[8 + j])))
166 TTAK[3] = _CAST16(TTAK[3] + _SBOX16(TTAK[2] ^ _MK16(TK[13 + j], TK[12 + j])))
167 TTAK[4] = _CAST16(TTAK[4] + _SBOX16(TTAK[3] ^ _MK16(TK[1 + j], TK[0 + j])) + i)
177 PPK[0] = _CAST16(PPK[0] + _SBOX16(PPK[5] ^ _MK16(TK[1], TK[0])))
[all …]
/aosp_15_r20/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_misc.py23 self.assertIn(timer1, root.tk.call('after', 'info'))
24 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', timer1))
28 root.tk.call(script)
38 self.assertIn(timer1, root.tk.call('after', 'info'))
39 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', timer1))
43 root.tk.call(script)
55 self.assertIn(idle1, root.tk.call('after', 'info'))
56 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', idle1))
60 root.tk.call(script)
70 self.assertIn(idle1, root.tk.call('after', 'info'))
[all …]
/aosp_15_r20/external/python/cpython3/Lib/idlelib/
Dredirector.py6 Some Tk operations don't normally pass through tkinter. For example, if a
7 character is inserted into a Text widget by pressing a key, a default Tk
8 binding to the widget's 'insert' operation is activated, and the Tk library
12 to do is to hook the Tk 'insert' operation itself. For one thing, we want
20 instance that represents the tk widget.
25 original Tk widget operation.
32 tk: widget.tk, a convenience attribute, probably not needed.
40 self.tk = tk = widget.tk # widget's root
41 w = widget._w # widget's (full) Tk pathname
44 tk.call("rename", w, self.orig)
[all …]
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/extras/app-toolkit/android-arch-core-common-nodeps/android_common/local-combined/
Dandroid-arch-core-common-nodeps.jarMETA-INF/MANIFEST.MF android/arch/core/internal/FastSafeIterableMap.class FastSafeIterableMap ...

12345678910>>...166