Home
last modified time | relevance | path

Searched refs:simple_stmt (Results 1 – 19 of 19) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar18 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/
Dfix_metaclass.py35 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:
Dfix_map.py63 if node.parent.type == syms.simple_stmt:
Dfix_exitfunc.py70 new = pytree.Node(syms.simple_stmt, [new_import])
Dfix_raise.py84 new = pytree.Node(syms.simple_stmt, [Name(u"raise")] + with_tb)
Dfix_next.py96 if node.type == syms.simple_stmt or node.parent is None:
Dfix_tuple_params.py75 new_lines.append(pytree.Node(syms.simple_stmt,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt31 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
Dfixer_util.py298 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/
Dgraminit.h15 #define simple_stmt 268 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h15 #define simple_stmt 268 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py25 simple_stmt = 268 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
Dexample.py170 (symbol.simple_stmt,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c189 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/
Dast.c189 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/
Dtransformer.py323 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/
Dtest_util.py27 node = Node(fixer_util.syms.simple_stmt, node)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c918 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/
Dparsermodule.c947 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()