Home
last modified time | relevance | path

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

/external/python/cpython2/Grammar/
DGrammar34 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
35 small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt35 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
36 small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
/external/python/cpython3/Grammar/
DGrammar38 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
39 small_stmt: (expr_stmt | del_stmt | pass_stmt | flow_stmt |
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt53 simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE
54 small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt |
/external/python/cpython3/Include/
Dgraminit.h18 #define small_stmt 271 macro
/external/python/cpython2/Include/
Dgraminit.h16 #define small_stmt 269 macro
/external/python/cpython2/Lib/
Dsymbol.py26 small_stmt = 269 variable
/external/python/cpython3/Lib/
Dsymbol.py28 small_stmt = 271 variable
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g129 : small_stmt (options {greedy=true;}:SEMI small_stmt)* (SEMI)? NEWLINE
132 small_stmt: expr_stmt
/external/python/cpython2/Demo/parser/
Dexample.py171 (symbol.small_stmt,
/external/python/cpython2/Lib/compiler/
Dtransformer.py319 small_stmt = stmt variable in Transformer
1418 or n == symbol.small_stmt:
1460 symbol.small_stmt,
/external/python/cpython2/Modules/
Dparsermodule.c984 VALIDATER(node); VALIDATER(small_stmt);
3175 case small_stmt: in validate_node()
/external/python/cpython2/Python/
Dast.c3261 if (TYPE(n) == small_stmt) { in ast_for_stmt()
/external/python/cpython3/Python/
Dast.c3976 if (TYPE(n) == small_stmt) { in ast_for_stmt()