/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/ |
D | Grammar | 18 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE 33 stmt: simple_stmt | compound_stmt 34 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE 78 suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 35 elif node.type == syms.simple_stmt and node.children: 84 new_stmt = Node(syms.simple_stmt, [new_expr]) 110 if simple_node.type == syms.simple_stmt and simple_node.children:
|
D | fix_map.py | 63 if node.parent.type == syms.simple_stmt:
|
D | fix_exitfunc.py | 70 new = pytree.Node(syms.simple_stmt, [new_import])
|
D | fix_raise.py | 84 new = pytree.Node(syms.simple_stmt, [Name(u"raise")] + with_tb)
|
D | fix_next.py | 96 if node.type == syms.simple_stmt or node.parent is None:
|
D | 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/ |
D | Grammar.txt | 31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE 52 stmt: simple_stmt | compound_stmt 53 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE 99 suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT
|
D | 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.10/Include/ |
D | graminit.h | 15 #define simple_stmt 268 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | graminit.h | 15 #define simple_stmt 268 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symbol.py | 25 simple_stmt = 268 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
D | example.py | 170 (symbol.simple_stmt,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ast.c | 189 case simple_stmt: in num_stmts() 261 REQ(ch, simple_stmt); in PyAST_FromNode() 305 REQ(n, simple_stmt); in PyAST_FromNode() 2754 if (TYPE(CHILD(n, 0)) == simple_stmt) { in ast_for_suite() 2786 REQ(ch, simple_stmt); in ast_for_suite() 3255 if (TYPE(n) == simple_stmt) { in ast_for_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ast.c | 189 case simple_stmt: in num_stmts() 261 REQ(ch, simple_stmt); in PyAST_FromNode() 305 REQ(n, simple_stmt); in PyAST_FromNode() 2737 if (TYPE(CHILD(n, 0)) == simple_stmt) { in ast_for_suite() 2769 REQ(ch, simple_stmt); in ast_for_suite() 3238 if (TYPE(n) == simple_stmt) { in ast_for_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 323 def simple_stmt(self, nodelist): member in Transformer 1417 if n == symbol.stmt or n == symbol.simple_stmt \ 1462 symbol.simple_stmt,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/ |
D | test_util.py | 27 node = Node(fixer_util.syms.simple_stmt, node)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | parsermodule.c | 918 VALIDATER(stmt); VALIDATER(simple_stmt); 1490 if (TYPE(tree) == simple_stmt) in validate_stmt() 1506 int res = (validate_ntype(tree, simple_stmt) in validate_simple_stmt() 3129 case simple_stmt: in validate_node()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | parsermodule.c | 947 VALIDATER(stmt); VALIDATER(simple_stmt); 1519 if (TYPE(tree) == simple_stmt) in validate_stmt() 1535 int res = (validate_ntype(tree, simple_stmt) in validate_simple_stmt() 3158 case simple_stmt: in validate_node()
|