Searched refs:root (Results 1 - 25 of 1815) sorted by relevance

1234567891011>>

/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
H A Dsupport.py5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
H A Dsupport.py5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
H A Dsupport.py5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
H A Dsupport.py5 root = Tkinter._default_root
7 # it is possible to disable default root in Tkinter, although
10 root = None
12 if root is None:
14 root = Tkinter.Tk()
16 return root
19 root = get_tk_root()
20 root.deiconify()
23 root = get_tk_root()
24 root
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
H A DmacosxSupport.py25 def isCarbonAquaTk(root):
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
37 def tkVersionWarning(root):
47 ('AppKit' in root.tk.call('winfo', 'server', '.')) ):
48 patchlevel = root.tk.call('info', 'patchlevel')
58 def addOpenEventSupport(root, flist):
70 root.createcommand("::tk::mac::OpenDocument", doOpenFile)
72 def hideTkConsole(root):
74 root
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
H A DmacosxSupport.py25 def isCarbonAquaTk(root):
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
37 def tkVersionWarning(root):
47 ('AppKit' in root.tk.call('winfo', 'server', '.')) ):
48 patchlevel = root.tk.call('info', 'patchlevel')
58 def addOpenEventSupport(root, flist):
70 root.createcommand("::tk::mac::OpenDocument", doOpenFile)
72 def hideTkConsole(root):
74 root
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
H A DmacosxSupport.py25 def isCarbonAquaTk(root):
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
37 def tkVersionWarning(root):
47 ('AppKit' in root.tk.call('winfo', 'server', '.')) ):
48 patchlevel = root.tk.call('info', 'patchlevel')
58 def addOpenEventSupport(root, flist):
70 root.createcommand("::tk::mac::OpenDocument", doOpenFile)
72 def hideTkConsole(root):
74 root
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
H A DmacosxSupport.py25 def isCarbonAquaTk(root):
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
37 def tkVersionWarning(root):
47 ('AppKit' in root.tk.call('winfo', 'server', '.')) ):
48 patchlevel = root.tk.call('info', 'patchlevel')
58 def addOpenEventSupport(root, flist):
70 root.createcommand("::tk::mac::OpenDocument", doOpenFile)
72 def hideTkConsole(root):
74 root
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/libcxx/containers/associative/
H A Dtree_remove.pass.cpp39 Node root; local
46 root.__left_ = &b;
48 b.__parent_ = &root;
73 std::__tree_remove(root.__left_, &y);
74 assert(std::__tree_invariant(root.__left_));
76 assert(root.__parent_ == 0);
77 assert(root.__left_ == &d);
78 assert(root.__right_ == 0);
79 assert(root.__is_black_ == false);
81 assert(d.__parent_ == &root);
104 Node root; local
169 Node root; local
245 Node root; local
324 Node root; local
389 Node root; local
454 Node root; local
519 Node root; local
584 Node root; local
649 Node root; local
714 Node root; local
779 Node root; local
844 Node root; local
909 Node root; local
974 Node root; local
1039 Node root; local
1108 Node root; local
1378 Node root; local
[all...]
H A Dtree_left_rotate.pass.cpp35 Node root; local
38 root.__left_ = &x;
41 x.__parent_ = &root;
46 assert(root.__parent_ == 0);
47 assert(root.__left_ == &y);
48 assert(root.__right_ == 0);
49 assert(y.__parent_ == &root);
60 Node root; local
66 root.__left_ = &x;
69 x.__parent_ = &root;
[all...]
H A Dtree_right_rotate.pass.cpp35 Node root; local
38 root.__left_ = &x;
41 x.__parent_ = &root;
46 assert(root.__parent_ == 0);
47 assert(root.__left_ == &y);
48 assert(root.__right_ == 0);
49 assert(y.__parent_ == &root);
60 Node root; local
66 root.__left_ = &x;
69 x.__parent_ = &root;
[all...]
H A Dtree_balance_after_insert.pass.cpp37 Node root; local
43 root.__left_ = &c;
45 c.__parent_ = &root;
65 std::__tree_balance_after_insert(root.__left_, &a);
67 assert(std::__tree_invariant(root.__left_));
69 assert(root.__left_ == &c);
71 assert(c.__parent_ == &root);
92 Node root; local
98 root.__left_ = &c;
100 c.__parent_ = &root;
147 Node root; local
202 Node root; local
257 Node root; local
332 Node root; local
407 Node root; local
482 Node root; local
562 Node root; local
606 Node root; local
650 Node root; local
722 Node root; local
799 Node root; local
843 Node root; local
887 Node root; local
959 Node root; local
1035 Node root; local
1325 Node root; local
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/associative/
H A Dtree_remove.pass.cpp39 Node root; local
46 root.__left_ = &b;
48 b.__parent_ = &root;
73 std::__tree_remove(root.__left_, &y);
74 assert(std::__tree_invariant(root.__left_));
76 assert(root.__parent_ == 0);
77 assert(root.__left_ == &d);
78 assert(root.__right_ == 0);
79 assert(root.__is_black_ == false);
81 assert(d.__parent_ == &root);
104 Node root; local
169 Node root; local
245 Node root; local
324 Node root; local
389 Node root; local
454 Node root; local
519 Node root; local
584 Node root; local
649 Node root; local
714 Node root; local
779 Node root; local
844 Node root; local
909 Node root; local
974 Node root; local
1039 Node root; local
1108 Node root; local
1378 Node root; local
[all...]
H A Dtree_left_rotate.pass.cpp35 Node root; local
38 root.__left_ = &x;
41 x.__parent_ = &root;
46 assert(root.__parent_ == 0);
47 assert(root.__left_ == &y);
48 assert(root.__right_ == 0);
49 assert(y.__parent_ == &root);
60 Node root; local
66 root.__left_ = &x;
69 x.__parent_ = &root;
[all...]
H A Dtree_right_rotate.pass.cpp35 Node root; local
38 root.__left_ = &x;
41 x.__parent_ = &root;
46 assert(root.__parent_ == 0);
47 assert(root.__left_ == &y);
48 assert(root.__right_ == 0);
49 assert(y.__parent_ == &root);
60 Node root; local
66 root.__left_ = &x;
69 x.__parent_ = &root;
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
H A DSimpleDialog.py13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
17 self.root.title(title)
18 self.root.iconname(title)
19 self.message = Message(self.root, text=text, aspect=400)
21 self.frame = Frame(self.root)
26 self.root.bind('<Return>', self.return_event)
34 self.root.protocol('WM_DELETE_WINDOW', self.wm_delete_window)
38 widget = self.root
67 self.root
[all...]
H A DtkFont.py66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
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)
91 self._root = root
92 self._split = root
183 root = Tkinter.Tk() variable
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
H A DSimpleDialog.py13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
17 self.root.title(title)
18 self.root.iconname(title)
19 self.message = Message(self.root, text=text, aspect=400)
21 self.frame = Frame(self.root)
26 self.root.bind('<Return>', self.return_event)
34 self.root.protocol('WM_DELETE_WINDOW', self.wm_delete_window)
38 widget = self.root
67 self.root
[all...]
H A DtkFont.py66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
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)
91 self._root = root
92 self._split = root
183 root = Tkinter.Tk() variable
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
H A DSimpleDialog.py13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
17 self.root.title(title)
18 self.root.iconname(title)
19 self.message = Message(self.root, text=text, aspect=400)
21 self.frame = Frame(self.root)
26 self.root.bind('<Return>', self.return_event)
34 self.root.protocol('WM_DELETE_WINDOW', self.wm_delete_window)
38 widget = self.root
67 self.root
[all...]
H A DtkFont.py66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
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)
91 self._root = root
92 self._split = root
183 root = Tkinter.Tk() variable
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
H A DSimpleDialog.py13 self.root = Toplevel(master, class_=class_)
15 self.root = Toplevel(master)
17 self.root.title(title)
18 self.root.iconname(title)
19 self.message = Message(self.root, text=text, aspect=400)
21 self.frame = Frame(self.root)
26 self.root.bind('<Return>', self.return_event)
34 self.root.protocol('WM_DELETE_WINDOW', self.wm_delete_window)
38 widget = self.root
67 self.root
[all...]
H A DtkFont.py66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
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)
91 self._root = root
92 self._split = root
183 root = Tkinter.Tk() variable
[all...]
/prebuilts/checkstyle/gitlint/
H A Dgit.py23 """Returns the root of the repository as an absolute path."""
25 root = subprocess.check_output(['git', 'rev-parse', '--show-toplevel'],
28 return root.decode('utf-8')
36 root = subprocess.check_output(['git', 'rev-parse', 'HEAD'],
39 return root.decode('utf-8')
52 def modified_files(root, tracked_only=False, commit=None):
56 root: the root of the repository, it has to be an absolute path.
65 assert os.path.isabs(root), "Root has to be absolute, got: %s" % root
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
H A Dpprint.h60 void clast_pprint(FILE *foo, struct clast_stmt *root, int indent,

Completed in 489 milliseconds

1234567891011>>