Searched refs:insert_child (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 89 parent.insert_child(i, new_stmt) 181 node.insert_child(3, arglist) 186 node.insert_child(2, Leaf(token.RPAR, ')')) 187 node.insert_child(2, arglist) 188 node.insert_child(2, Leaf(token.LPAR, '(')) 227 suite.insert_child(-1, pass_leaf) 228 suite.insert_child(-1, Leaf(token.NEWLINE, '\n'))
|
D | fix_exitfunc.py | 71 containing_stmt.insert_child(position + 1, Newline()) 72 containing_stmt.insert_child(position + 2, new)
|
D | fix_except.py | 84 e_suite.insert_child(0, child) 85 e_suite.insert_child(i, assign)
|
D | fix_paren.py | 43 target.insert_child(0, lparen)
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
D | node.c | 414 gpir_node *insert_child) in gpir_node_insert_child() argument 418 gpir_node_replace_pred(dep, insert_child); in gpir_node_insert_child() 419 gpir_node_replace_child(parent, child, insert_child); in gpir_node_insert_child()
|
D | gpir.h | 442 void gpir_node_insert_child(gpir_node *parent, gpir_node *child, gpir_node *insert_child);
|
/third_party/rust/crates/clap/src/util/ |
D | graph.rs | 35 pub(crate) fn insert_child(&mut self, parent: usize, child: T) -> usize { in insert_child() function
|
/third_party/python/Lib/lib2to3/tests/ |
D | test_pytree.py | 296 n1.insert_child(0, l2) 301 n1.insert_child(2, l3) 305 self.assertRaises(Exception, n1.insert_child, 0, list)
|
/third_party/python/Lib/lib2to3/ |
D | fixer_util.py | 56 node.insert_child(1, Node(syms.arglist, args)) 357 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
|
D | pytree.py | 298 def insert_child(self, i, child): member in Node
|
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | pytree_utils.py | 195 parent_of_target.insert_child(insertion_index, new_node)
|
D | subtype_assigner.py | 395 node.insert_child(0, lparen)
|
/third_party/rust/crates/clap/src/builder/ |
D | command.rs | 4474 reqs.insert_child(idx, a.clone()); in required_graph()
|