HomeSort by relevance Sort by last modified time
    Searched refs:simple_stmt (Results 26 - 50 of 72) sorted by null

12 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 84 new = pytree.Node(syms.simple_stmt, [Name(u"raise")] + with_tb)
fix_metaclass.py 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
35 elif node.type == syms.simple_stmt and node.children:
73 simple_stmt. We just want the __metaclass__ part so we move
74 everything efter the semi-colon into its own simple_stmt node
84 new_stmt = Node(syms.simple_stmt, [new_expr])
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
110 if simple_node.type == syms.simple_stmt and simple_node.children:
fix_next.py 96 if node.type == syms.simple_stmt or node.parent is None:
fix_tuple_params.py 75 new_lines.append(pytree.Node(syms.simple_stmt,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_exitfunc.py 70 new = pytree.Node(syms.simple_stmt, [new_import])
fix_raise.py 84 new = pytree.Node(syms.simple_stmt, [Name(u"raise")] + with_tb)
fix_metaclass.py 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
35 elif node.type == syms.simple_stmt and node.children:
73 simple_stmt. We just want the __metaclass__ part so we move
74 everything efter the semi-colon into its own simple_stmt node
84 new_stmt = Node(syms.simple_stmt, [new_expr])
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
110 if simple_node.type == syms.simple_stmt and simple_node.children:
fix_next.py 96 if node.type == syms.simple_stmt or node.parent is None:
fix_tuple_params.py 75 new_lines.append(pytree.Node(syms.simple_stmt,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_metaclass.py 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
35 elif node.type == syms.simple_stmt and node.children:
73 simple_stmt. We just want the __metaclass__ part so we move
74 everything efter the semi-colon into its own simple_stmt node
84 new_stmt = Node(syms.simple_stmt, [new_expr])
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
110 if simple_node.type == syms.simple_stmt and simple_node.children:
fix_next.py 96 if node.type == syms.simple_stmt or node.parent is None:
fix_tuple_params.py 75 new_lines.append(pytree.Node(syms.simple_stmt,
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
35 elif node.type == syms.simple_stmt and node.children:
73 simple_stmt. We just want the __metaclass__ part so we move
74 everything efter the semi-colon into its own simple_stmt node
84 new_stmt = Node(syms.simple_stmt, [new_expr])
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
110 if simple_node.type == syms.simple_stmt and simple_node.children:
fix_next.py 96 if node.type == syms.simple_stmt or node.parent is None:
fix_tuple_params.py 75 new_lines.append(pytree.Node(syms.simple_stmt,
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
35 elif node.type == syms.simple_stmt and node.children:
73 simple_stmt. We just want the __metaclass__ part so we move
74 everything efter the semi-colon into its own simple_stmt node
84 new_stmt = Node(syms.simple_stmt, [new_expr])
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
110 if simple_node.type == syms.simple_stmt and simple_node.children:
fix_next.py 96 if node.type == syms.simple_stmt or node.parent is None:
fix_tuple_params.py 75 new_lines.append(pytree.Node(syms.simple_stmt,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
example.py 170 (symbol.simple_stmt,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
fixer_util.py 298 return (node.type == syms.simple_stmt and node.children and
322 if (node.type == syms.simple_stmt and node.children and
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
369 elif child.type == syms.simple_stmt:
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
fixer_util.py 298 return (node.type == syms.simple_stmt and node.children and
322 if (node.type == syms.simple_stmt and node.children and
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
369 elif child.type == syms.simple_stmt:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
fixer_util.py 298 return (node.type == syms.simple_stmt and node.children and
322 if (node.type == syms.simple_stmt and node.children and
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
369 elif child.type == syms.simple_stmt:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 298 return (node.type == syms.simple_stmt and node.children and
322 if (node.type == syms.simple_stmt and node.children and
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
369 elif child.type == syms.simple_stmt:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 298 return (node.type == syms.simple_stmt and node.children and
322 if (node.type == syms.simple_stmt and node.children and
336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
369 elif child.type == syms.simple_stmt:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
transformer.py 172 # NEWLINE | simple_stmt | compound_stmt NEWLINE
323 def simple_stmt(self, nodelist): member in class:Transformer
559 # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDENT
802 # break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
    [all...]

Completed in 3643 milliseconds

12 3