Home
last modified time | relevance | path

Searched refs:set_child (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/lib2to3/tests/
Dtest_pytree.py275 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/
Dfix_metaclass.py176 node.set_child(3, arglist)
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dbtree.h700 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/
Dpytree.py288 def set_child(self, i, child): member in Node