Home
last modified time | relevance | path

Searched refs:compound_stmt (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar17 # NB: compound_stmt in single_input is followed by extra NEWLINE!
18 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
33 stmt: simple_stmt | compound_stmt
65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt29 # NB: compound_stmt in single_input is followed by extra NEWLINE!
31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
52 stmt: simple_stmt | compound_stmt
85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
Dclass_definition.py24 if compound_statement.type != symbol.compound_stmt:
Dfunction_definition.py24 if compound_statement.type != symbol.compound_stmt:
/external/python/cpython2/Include/
Dgraminit.h39 #define compound_stmt 292 macro
/external/python/cpython2/Lib/
Dsymbol.py49 compound_stmt = 292 variable
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g79 | compound_stmt NEWLINE
125 | compound_stmt
226 compound_stmt: if_stmt
/external/python/cpython2/Demo/parser/
Dexample.py160 (symbol.compound_stmt, ['compound'])
/external/python/cpython2/Doc/reference/
Dtoplevel_components.rst88 interactive_input: [`stmt_list`] NEWLINE | `compound_stmt` NEWLINE
Dcompound_stmts.rst45 compound_stmt: `if_stmt`
54 statement: `stmt_list` NEWLINE | `compound_stmt`
/external/python/cpython2/Lib/compiler/
Dtransformer.py321 compound_stmt = stmt variable in Transformer
1463 symbol.compound_stmt,
/external/python/cpython2/Modules/
Dparsermodule.c955 VALIDATER(exec_stmt); VALIDATER(compound_stmt);
1596 int res = (validate_ntype(tree, compound_stmt) in validate_compound_stmt()
3161 case compound_stmt: in validate_node()
/external/python/cpython2/Python/
Dast.c187 case compound_stmt: in num_stmts()
3296 REQ(n, compound_stmt); in ast_for_stmt()