HomeSort by relevance Sort by last modified time
    Searched refs:tk (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/javassist/src/main/javassist/compiler/
Lex.java 70 Token tk = lookAheadTokens; local
71 if (tk == null) {
72 lookAheadTokens = tk = currentToken; // reuse an object!
73 tk.next = null;
74 get(tk);
77 for (; i-- > 0; tk = tk.next)
78 if (tk.next == null) {
80 tk.next = tk2 = new Token();
84 currentToken = tk;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 1 """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
    [all...]
Tix.py 34 raise ImportError, "This version of Tix.py requires Tk 4.0 or higher"
36 import _tkinter # If this fails your Python may not be configured for Tk
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)
126 for x in self.tk.split(self.tk.call('tix', 'configure')):
130 x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf)
    [all...]
ttk.py 3 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.
356 master = Tkinter._default_root or Tkinter.Tk()
    [all...]
Dialog.py 17 self.num = self.tk.getint(
18 self.tk.call(
tkFont.py 20 """Given the name of a tk named font, returns a Font representation.
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
92 self._split = root.tk.splitlist
93 self._call = root.tk.call
170 return root.tk.splitlist(root.tk.call("font", "families")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 1 """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
    [all...]
Tix.py 34 raise ImportError, "This version of Tix.py requires Tk 4.0 or higher"
36 import _tkinter # If this fails your Python may not be configured for Tk
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)
126 for x in self.tk.split(self.tk.call('tix', 'configure')):
130 x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf)
    [all...]
ttk.py 3 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.
356 master = Tkinter._default_root or Tkinter.Tk()
    [all...]
Dialog.py 17 self.num = self.tk.getint(
18 self.tk.call(
tkFont.py 20 """Given the name of a tk named font, returns a Font representation.
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
92 self._split = root.tk.splitlist
93 self._call = root.tk.call
170 return root.tk.splitlist(root.tk.call("font", "families")
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
nuances.rb 24 tokens = lexer.each { |tk| tk }
44 tks = lexer.map { |tk| tk }
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 7 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.
23 Tk widget operation.
29 self.tk = tk = widget.tk # widget's root
30 w = widget._w # widget's (full) Tk pathname
33 tk.call("rename", w, self.orig
    [all...]
macosxSupport.py 15 If so, assume that Python was built with Aqua Tcl/Tk rather than
16 X11 Tcl/Tk.
27 Returns True if IDLE is using a Carbon Aqua Tk (instead of the
28 newer Cocoa Aqua Tk).
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
39 Returns a string warning message if the Tk version in use appears to
41 1. Apple Cocoa-based Tk 8.5.7 shipped with Mac OS X 10.6 is unusable.
42 2. Apple Cocoa-based Tk 8.5.9 in OS X 10.7 and 10.8 is better bu
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 7 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.
23 Tk widget operation.
29 self.tk = tk = widget.tk # widget's root
30 w = widget._w # widget's (full) Tk pathname
33 tk.call("rename", w, self.orig
    [all...]
macosxSupport.py 15 If so, assume that Python was built with Aqua Tcl/Tk rather than
16 X11 Tcl/Tk.
27 Returns True if IDLE is using a Carbon Aqua Tk (instead of the
28 newer Cocoa Aqua Tk).
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
39 Returns a string warning message if the Tk version in use appears to
41 1. Apple Cocoa-based Tk 8.5.7 shipped with Mac OS X 10.6 is unusable.
42 2. Apple Cocoa-based Tk 8.5.9 in OS X 10.7 and 10.8 is better bu
    [all...]
  /external/wpa_supplicant_8/src/crypto/
md5.c 30 u8 tk[16]; local
44 if (md5_vector(1, &key, &key_len, tk))
46 key = tk;
sha1.c 30 unsigned char tk[20]; local
44 if (sha1_vector(1, &key, &key_len, tk))
46 key = tk;
sha256.c 30 unsigned char tk[32]; local
44 if (sha256_vector(1, &key, &key_len, tk) < 0)
46 key = tk;
crypto_internal.c 36 u8 tk[32]; local
61 MD5Final(tk, &ctx->u.md5);
62 key = tk;
80 SHA1Final(tk, &ctx->u.sha1);
81 key = tk;
100 sha256_done(&ctx->u.sha256, tk);
101 key = tk;
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
t1afm.c 373 AFM_TrackKern tk = fi->TrackKerns + i; local
376 if ( tk->degree != degree )
379 if ( ptsize < tk->min_ptsize )
380 *kerning = tk->min_kern;
381 else if ( ptsize > tk->max_ptsize )
382 *kerning = tk->max_kern;
385 *kerning = FT_MulDiv( ptsize - tk->min_ptsize,
386 tk->max_kern - tk->min_kern,
387 tk->max_ptsize - tk->min_ptsize )
    [all...]
  /external/tcpdump/
signature.c 59 unsigned char tk[16]; local
69 MD5_Final(tk, &tctx);
71 key = tk;
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 45 #define tk xtk.x8 macro
49 *((word32*)tk[j]) = *((word32*)k[j]);
56 *((word32*)W[r][t]) = *((word32*)tk[j]);
66 tk[0][0] ^= S[tk[KC-1][1]];
67 tk[0][1] ^= S[tk[KC-1][2]];
68 tk[0][2] ^= S[tk[KC-1][3]];
69 tk[0][3] ^= S[tk[KC-1][0]]
100 #undef tk macro
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interp.java 115 StringTokenizer tk = new StringTokenizer(ignoreTokens, " "); local
116 while ( tk.hasMoreTokens() ) {
117 String tokenName = tk.nextToken();
  /external/chromium_org/third_party/tlslite/tlslite/utils/
rijndael.py 223 tk = []
225 tk.append((key[i * 4] << 24) | (key[i * 4 + 1] << 16) |
232 Ke[t // BC][t % BC] = tk[j]
233 Kd[ROUNDS - (t // BC)][t % BC] = tk[j]
240 tt = tk[KC - 1]
241 tk[0] ^= (S[(tt >> 16) & 0xFF] & 0xFF) << 24 ^ \
249 tk[i] ^= tk[i-1]
252 tk[i] ^= tk[i-1
    [all...]

Completed in 332 milliseconds

1 2 3 4