Searched refs:append_child (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 65 suite.append_child(move_node.clone()) 67 cls_node.append_child(suite) 87 new_expr.append_child(move_node.clone()) 198 arglist.append_child(Leaf(token.COMMA, ',')) 209 arglist.append_child(last_metaclass) 219 node.append_child(pass_leaf) 220 node.append_child(Leaf(token.NEWLINE, '\n'))
|
D | fix_exitfunc.py | 61 names.append_child(Comma()) 62 names.append_child(Name("atexit", " "))
|
D | fix_paren.py | 44 target.append_child(RParen())
|
D | fix_xrange.py | 51 list_call.append_child(n)
|
D | fix_idioms.py | 148 list_call.parent.append_child(end_line)
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 65 suite.append_child(move_node.clone()) 67 cls_node.append_child(suite) 87 new_expr.append_child(move_node.clone()) 198 arglist.append_child(Leaf(token.COMMA, u',')) 209 arglist.append_child(last_metaclass) 219 node.append_child(pass_leaf) 220 node.append_child(Leaf(token.NEWLINE, u'\n'))
|
D | fix_exitfunc.py | 61 names.append_child(Comma()) 62 names.append_child(Name(u"atexit", u" "))
|
D | fix_paren.py | 44 target.append_child(RParen())
|
D | fix_xrange.py | 51 list_call.append_child(n)
|
D | fix_idioms.py | 148 list_call.parent.append_child(end_line)
|
/external/python/cpython3/Lib/lib2to3/tests/ |
D | test_pytree.py | 311 n1.append_child(l1) 316 n1.append_child(l2) 321 self.assertRaises(Exception, n1.append_child, list)
|
/external/python/cpython2/Lib/lib2to3/tests/ |
D | test_pytree.py | 333 n1.append_child(l1) 338 n1.append_child(l2) 343 self.assertRaises(Exception, n1.append_child, list)
|
/external/yapf/yapf/yapflib/ |
D | subtype_assigner.py | 420 node.append_child(rparen) 422 node.append_child(comment_node)
|
/external/python/cpython3/Lib/lib2to3/ |
D | pytree.py | 307 def append_child(self, child): member in Node
|
/external/python/cpython2/Lib/lib2to3/ |
D | pytree.py | 341 def append_child(self, child): member in Node
|