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

1 2 3 4 5 6 7 8 91011

  /external/python/cpython2/Demo/tkinter/guido/
hello.py 7 root = Tk()
imageview.py 6 root = Tk()
optionmenu.py 5 root = Tk()
imagedraw.py 8 root = Tk()
brownian.py 36 root = Tk()
brownian2.py 41 root = Tk()
listtree.py 19 children = list.tk.splitlist(
29 tk = Tk()
30 tk.minsize(1, 1)
31 f = Frame(tk, name='f')
34 tk.mainloop()
  /external/python/cpython2/Lib/idlelib/idle_test/
test_configdialog.py 8 from Tkinter import Tk
18 cls.root = Tk()
test_textview.py 6 from Tkinter import Tk
22 cls.root = Tk()
63 cls.root = Tk()
  /prebuilts/go/darwin-x86/src/math/big/
calibrate_test.go 41 // determine Tk, the work load execution time using basic multiplication
52 // determine Tk, the work load execution time using Karatsuba multiplication
53 Tk := measureKaratsuba(th)
56 delta := (Tb - Tk) * 100 / Tb
58 fmt.Printf("th = %3d Tk = %10s %4d%%", th, Tk, delta)
61 if Tk < Tb && th1 < 0 {
  /prebuilts/go/linux-x86/src/math/big/
calibrate_test.go 41 // determine Tk, the work load execution time using basic multiplication
52 // determine Tk, the work load execution time using Karatsuba multiplication
53 Tk := measureKaratsuba(th)
56 delta := (Tb - Tk) * 100 / Tb
58 fmt.Printf("th = %3d Tk = %10s %4d%%", th, Tk, delta)
61 if Tk < Tb && th1 < 0 {
  /external/python/cpython2/Demo/tkinter/ttk/
mac_searchentry.py 3 Translated from Tcl code by Schelte Bron, http://wiki.tcl.tk/18188
8 root = Tkinter.Tk()
listbox_scrollcmd.py 4 grid [tk::listbox .l -yscrollcommand ".s set" -height 5] -column 0 -row 0 -sticky nwes
16 root = Tkinter.Tk()
  /external/python/cpython2/Demo/tix/
grid.py 2 import Tix as tk
5 r= tk.Tk()
8 l=tk.Label(r, name="a_label")
11 class MyGrid(tk.Grid):
14 tk.Grid.__init__(self, *args, **kwargs)
20 g.pack(fill=tk.BOTH)
25 c = tk.Button(r, text="Close", command=r.destroy)
28 tk.mainloop()
  /external/python/cpython2/Demo/tix/samples/
BtnBox.py 14 # group of TK buttons. You can use it to manage the buttons in a dialog box,
42 root = Tix.Tk()
Balloon.py 61 foundEvent = self.root.tk.dooneevent(TCL_ALL_EVENTS)
67 root = Tix.Tk()
  /external/python/cpython2/Demo/tkinter/matt/
packer-and-placer-together.py 37 root = Tk()
placer-simple.py 35 root = Tk()
subclass-existing-widgets.py 26 root = Tk()
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
support.py 14 root = Tkinter.Tk()
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
support.py 14 root = Tkinter.Tk()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
support.py 14 root = Tkinter.Tk()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
support.py 14 root = Tkinter.Tk()
  /external/python/cpython2/Lib/idlelib/
MultiStatusBar.py 7 master = Tk()
23 root = Tk()
  /external/python/cpython2/Tools/pynche/
pyColorChooser.py 35 from Tkinter import Tk
36 self.__master = Tk()
102 self.__root = tk = Tk()
103 b = Button(tk, text='Choose Color...', command=self.__choose)
105 self.__l = Label(tk)
107 q = Button(tk, text='Quit', command=self.__quit)

Completed in 515 milliseconds

1 2 3 4 5 6 7 8 91011