Searched refs:set_child (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/lib2to3/tests/ |
D | test_pytree.py | 275 n1.set_child(0, l2) 281 n2.set_child(0, n1) 287 self.assertRaises(IndexError, n1.set_child, 4, l2) 289 self.assertRaises(Exception, n1.set_child, 0, list)
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 176 node.set_child(3, arglist)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | btree.h | 700 void set_child(int i, btree_node *c) { 706 set_child(i, c); 1601 set_child(j, child(j - 1)); 1624 set_child(j - to_erase, child(j));
|
/third_party/python/Lib/lib2to3/ |
D | pytree.py | 288 def set_child(self, i, child): member in Node
|