Home
last modified time | relevance | path

Searched refs:get_children (Results 1 – 25 of 50) sorted by relevance

12

/external/clang/bindings/python/tests/cindex/
Dtest_cursor.py35 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():
Dtest_translation_unit.py34 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()]
Dtest_type.py32 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())
Dtest_location.py66 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
/external/bc/tests/
Dafl.py81 def get_children(dir, get_files): function
160 dirs = get_children(resultsdir, False)
172 files = get_children(d + "/crashes/", True)
181 files = get_children(d + "/queue/", True)
/external/llvm-project/clang/bindings/python/tests/cindex/
Dtest_cursor.py60 it = tu.cursor.get_children()
77 s0_nodes = list(tu_nodes[0].get_children())
99 cursors = list(tu.cursor.get_children())
118 for cursor in tu.cursor.get_children():
367 enum_constants = list(enum.get_children())
386 enum_constants = list(enum.get_children())
402 for c in foo.get_children():
422 for c in foo.get_children():
552 for c in bar.get_children():
Dtest_translation_unit.py69 spellings = [c.spelling for c in tu.cursor.get_children()]
77 spellings = [c.spelling for c in tu.cursor.get_children()]
92 spellings = [c.spelling for c in tu.cursor.get_children()]
103 spellings = [c.spelling for c in tu.cursor.get_children()]
118 spellings = [c.spelling for c in tu.cursor.get_children()]
155 …inclusion_directive_files = [c.get_included_file().name for c in tu.cursor.get_children() if c.kin…
Dtest_type.py47 fields = list(teststruct.get_children())
120 children = list(tu.cursor.get_children())
141 fields = list(teststruct.get_children())
376 fields = list(teststruct.get_children())
412 children = list(teststruct.get_children())
Dtest_exception_specification_kind.py16 for child in node.get_children():
Dtest_location.py76 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
/external/antlr/runtime/Cpp/include/
Dantlr3commontree.hpp92 ChildrenType& get_children();
93 const ChildrenType& get_children() const;
Dantlr3commontree.inl55 typename CommonTree<ImplTraits>::ChildrenType& CommonTree<ImplTraits>::get_children() function in CommonTree
61 const typename CommonTree<ImplTraits>::ChildrenType& CommonTree<ImplTraits>::get_children() const function in CommonTree
81 ChildrenType& child_children = child->get_children();
82 ChildrenType& tree_children = this->get_children();
222 ChildrenType& parent_children = this->get_children();
235 ChildrenType& parent_children = this->get_children();
254 ChildrenType& parent_children = this->get_children();
/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_widgets.py1174 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/cpython3/Lib/tkinter/test/test_ttk/
Dtest_widgets.py1350 children = self.tv.get_children()
1372 self.assertEqual(self.tv.get_children(), ())
1375 self.assertIsInstance(self.tv.get_children(), tuple)
1376 self.assertEqual(self.tv.get_children()[0], item_id)
1382 self.assertEqual(self.tv.get_children(child2), (item_id, child3))
1391 self.assertEqual(self.tv.get_children(child2), ())
1395 self.assertEqual(self.tv.get_children(), ())
1429 self.assertEqual(self.tv.get_children(), (item_id, ))
1430 self.assertEqual(self.tv.get_children(item_id), (item2, ))
1433 self.assertFalse(self.tv.get_children())
[all …]
/external/python/cpython2/Demo/tkinter/ttk/
Ddirbrowser.py15 tree.delete(*tree.get_children(node))
54 tree.delete(tree.get_children(''))
Dtreeview_multicolumn.py28 data = [(tree.set(child, col), child) for child in tree.get_children('')]
/external/python/cpython3/Lib/test/
Dtest_symtable.py47 for ch in block.get_children():
164 st2 = st1.get_children()[0]
169 st4 = st3.get_children()[0]
/external/llvm-project/clang/bindings/python/examples/cindex/
Dcindex-dump.py43 for c in node.get_children()]
/external/clang/bindings/python/examples/cindex/
Dcindex-dump.py44 for c in node.get_children()]
/external/python/cpython2/Lib/compiler/
Dpyassem.py25 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()
/external/python/cpython2/Doc/library/
Dsymtable.rst68 be obtained with :meth:`get_children`.
90 .. method:: get_children()
/external/python/cpython3/Doc/library/
Dsymtable.rst68 be obtained with :meth:`get_children`.
82 .. method:: get_children()
/external/rust/crates/bindgen/src/ir/
Dannotations.rs211 for child in comment.get_children() { in parse()
/external/icu/tools/icu4c_srcgen/
Dgenutil.py353 for child in cursor.get_children():
389 for child in cursor.get_children():
/external/libcxx/utils/libcxx/
Dutil.py266 children_iterator = psutilProc.get_children(recursive=True)

12