Home
last modified time | relevance | path

Searched refs:small_stmt (Results 1 – 9 of 9) 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/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/cpython2/Include/
Dgraminit.h16 #define small_stmt 269 macro
/external/python/cpython2/Lib/
Dsymbol.py26 small_stmt = 269 variable
/external/antlr/antlr-3.4/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.c942 VALIDATER(node); VALIDATER(small_stmt);
3133 case small_stmt: in validate_node()
/external/python/cpython2/Python/
Dast.c3259 if (TYPE(n) == small_stmt) { in ast_for_stmt()