/external/clang/bindings/python/tests/cindex/ |
D | test_cursor.py | 35 it = tu.cursor.get_children() 52 s0_nodes = list(tu_nodes[0].get_children()) 74 cursors = list(tu.cursor.get_children()) 93 for cursor in tu.cursor.get_children(): 322 enum_constants = list(enum.get_children()) 341 enum_constants = list(enum.get_children()) 357 for c in foo.get_children(): 437 for c in bar.get_children():
|
D | test_translation_unit.py | 34 spellings = [c.spelling for c in tu.cursor.get_children()] 42 spellings = [c.spelling for c in tu.cursor.get_children()] 57 spellings = [c.spelling for c in tu.cursor.get_children()] 65 spellings = [c.spelling for c in tu.cursor.get_children()]
|
D | test_type.py | 32 fields = list(teststruct.get_children()) 83 children = list(tu.cursor.get_children()) 109 fields = list(teststruct.get_children()) 347 fields = list(teststruct.get_children()) 383 children = list(teststruct.get_children())
|
D | test_location.py | 66 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
|
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 1174 children = self.tv.get_children() 1196 self.assertEqual(self.tv.get_children(), ()) 1199 self.assertIsInstance(self.tv.get_children(), tuple) 1200 self.assertEqual(self.tv.get_children()[0], item_id) 1206 self.assertEqual(self.tv.get_children(child2), (item_id, child3)) 1215 self.assertEqual(self.tv.get_children(child2), ()) 1219 self.assertEqual(self.tv.get_children(), ()) 1253 self.assertEqual(self.tv.get_children(), (item_id, )) 1254 self.assertEqual(self.tv.get_children(item_id), (item2, )) 1257 self.assertFalse(self.tv.get_children()) [all …]
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_widgets.py | 1174 children = self.tv.get_children() 1196 self.assertEqual(self.tv.get_children(), ()) 1199 self.assertIsInstance(self.tv.get_children(), tuple) 1200 self.assertEqual(self.tv.get_children()[0], item_id) 1206 self.assertEqual(self.tv.get_children(child2), (item_id, child3)) 1215 self.assertEqual(self.tv.get_children(child2), ()) 1219 self.assertEqual(self.tv.get_children(), ()) 1253 self.assertEqual(self.tv.get_children(), (item_id, )) 1254 self.assertEqual(self.tv.get_children(item_id), (item2, )) 1257 self.assertFalse(self.tv.get_children()) [all …]
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | dirbrowser.py | 15 tree.delete(*tree.get_children(node)) 54 tree.delete(tree.get_children(''))
|
D | treeview_multicolumn.py | 28 data = [(tree.set(child, col), child) for child in tree.get_children('')]
|
/external/python/cpython3/Lib/test/ |
D | test_symtable.py | 37 for ch in block.get_children(): 138 st2 = st1.get_children()[0] 143 st4 = st3.get_children()[0]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | parsetree.py | 26 def get_children(self): member in Node 31 for n in node.get_children(): 45 def get_children(self): member in TemplateNode 81 def get_children(self): member in ControlLine 278 def get_children(self): member in Tag
|
D | codegen.py | 801 children = node.get_children() 1227 for n in node.get_children():
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 25 print " ", self.current.get_children() 115 for c in b.get_children(): 218 def get_children(self): member in Block 354 children = b.get_children()
|
D | symbols.py | 76 def get_children(self): member in Scope
|
/external/clang/bindings/python/examples/cindex/ |
D | cindex-dump.py | 44 for c in node.get_children()]
|
/external/python/cpython3/Doc/library/ |
D | symtable.rst | 68 be obtained with :meth:`get_children`. 86 .. method:: get_children()
|
/external/python/cpython2/Doc/library/ |
D | symtable.rst | 68 be obtained with :meth:`get_children`. 90 .. method:: get_children()
|
/external/libcxx/utils/libcxx/ |
D | util.py | 266 children_iterator = psutilProc.get_children(recursive=True)
|
/external/libxml2/python/ |
D | libxml.py | 297 def get_children(self): member in xmlCore 391 children = property(get_children, None, None, "First child node")
|
/external/python/cpython2/Lib/test/ |
D | test_symtable.py | 39 for ch in block.get_children():
|
/external/python/cpython3/Lib/ |
D | symtable.py | 108 def get_children(self): member in SymbolTable
|
/external/llvm/utils/lit/lit/ |
D | util.py | 276 children_iterator = psutilProc.get_children(recursive=True)
|
/external/python/cpython2/Lib/ |
D | symtable.py | 113 def get_children(self): member in SymbolTable
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 1190 def get_children(self, item=None): member in Treeview
|
/external/clang/bindings/python/clang/ |
D | cindex.py | 1519 def get_children(self): member in Cursor 1543 for child in self.get_children():
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 1194 def get_children(self, item=None): member in Treeview
|