HomeSort by relevance Sort by last modified time
    Searched refs:insert_child (Results 1 - 14 of 14) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_paren.py 43 target.insert_child(0, lparen)
fix_metaclass.py 89 parent.insert_child(i, new_stmt)
181 node.insert_child(3, arglist)
186 node.insert_child(2, Leaf(token.RPAR, u')'))
187 node.insert_child(2, arglist)
188 node.insert_child(2, Leaf(token.LPAR, u'('))
227 suite.insert_child(-1, pass_leaf)
228 suite.insert_child(-1, Leaf(token.NEWLINE, u'\n'))
fix_exitfunc.py 71 containing_stmt.insert_child(position + 1, Newline())
72 containing_stmt.insert_child(position + 2, new)
fix_except.py 84 e_suite.insert_child(0, child)
85 e_suite.insert_child(i, assign)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_paren.py 43 target.insert_child(0, lparen)
fix_metaclass.py 89 parent.insert_child(i, new_stmt)
181 node.insert_child(3, arglist)
186 node.insert_child(2, Leaf(token.RPAR, u')'))
187 node.insert_child(2, arglist)
188 node.insert_child(2, Leaf(token.LPAR, u'('))
227 suite.insert_child(-1, pass_leaf)
228 suite.insert_child(-1, Leaf(token.NEWLINE, u'\n'))
fix_exitfunc.py 71 containing_stmt.insert_child(position + 1, Newline())
72 containing_stmt.insert_child(position + 2, new)
fix_except.py 84 e_suite.insert_child(0, child)
85 e_suite.insert_child(i, assign)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 58 node.insert_child(1, Node(syms.arglist, args))
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
pytree.py 332 def insert_child(self, i, child): member in class:Node
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 58 node.insert_child(1, Node(syms.arglist, args))
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
pytree.py 332 def insert_child(self, i, child): member in class:Node
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 318 n1.insert_child(0, l2)
323 n1.insert_child(2, l3)
327 self.assertRaises(Exception, n1.insert_child, 0, list)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 318 n1.insert_child(0, l2)
323 n1.insert_child(2, l3)
327 self.assertRaises(Exception, n1.insert_child, 0, list)

Completed in 310 milliseconds