Home
last modified time | relevance | path

Searched refs:expr_stmt (Results 1 – 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_metaclass.py37 if expr_node.type == syms.expr_stmt and expr_node.children:
83 new_expr = Node(syms.expr_stmt, [])
112 if expr_node.type == syms.expr_stmt and expr_node.children:
204 expr_stmt = last_metaclass.children[0]
205 assert expr_stmt.type == syms.expr_stmt
206 expr_stmt.children[1].prefix = u''
207 expr_stmt.children[2].prefix = u''
Dfix_next.py94 if node.type == syms.expr_stmt:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dgraminit.h17 #define expr_stmt 270 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h17 #define expr_stmt 270 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py27 expr_stmt = 270 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar35 small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
37 expr_stmt: testlist (augassign (yield_expr|testlist) |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt54 small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
56 expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) |
Dfixer_util.py238 if parent.type == syms.expr_stmt and parent.children[0] is node:
371 elif child.type == syms.expr_stmt:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
Dexample.py172 (symbol.expr_stmt,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dtransformer.py362 def expr_stmt(self, nodelist): member in Transformer
1426 symbol.expr_stmt,
1464 symbol.expr_stmt,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c919 VALIDATER(expr_stmt); VALIDATER(power);
1536 if ( (ntype == expr_stmt) in validate_small_stmt()
1607 int res = (validate_ntype(tree, expr_stmt) in validate_expr_stmt()
3138 case expr_stmt: in validate_node()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c948 VALIDATER(expr_stmt); VALIDATER(power);
1565 if ( (ntype == expr_stmt) in validate_small_stmt()
1636 int res = (validate_ntype(tree, expr_stmt) in validate_expr_stmt()
3167 case expr_stmt: in validate_node()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c2171 REQ(n, expr_stmt); in ast_for_expr_stmt()
3249 case expr_stmt: in ast_for_stmt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c2176 REQ(n, expr_stmt); in ast_for_expr_stmt()
3266 case expr_stmt: in ast_for_stmt()