Home
last modified time | relevance | path

Searched refs:compound_stmt (Results 1 – 20 of 20) 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/cpython3/Lib/lib2to3/
DGrammar.txt10 # NB: compound_stmt in single_input is followed by extra NEWLINE!
12 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
34 stmt: simple_stmt | compound_stmt
68 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
/external/python/cpython3/Grammar/
DGrammar10 # NB: compound_stmt in single_input is followed by extra NEWLINE!
11 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
37 stmt: simple_stmt | compound_stmt
70 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.py22 if compound_statement.type != symbol.compound_stmt:
Dfunction_definition.py22 if compound_statement.type != symbol.compound_stmt:
/external/python/cpython3/Include/
Dgraminit.h42 #define compound_stmt 295 macro
/external/python/cpython2/Include/
Dgraminit.h39 #define compound_stmt 292 macro
/external/python/cpython2/Lib/
Dsymbol.py49 compound_stmt = 292 variable
/external/python/cpython3/Lib/
Dsymbol.py52 compound_stmt = 295 variable
/external/antlr/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/cpython3/Doc/reference/
Dtoplevel_components.rst89 interactive_input: [`stmt_list`] NEWLINE | `compound_stmt` NEWLINE
Dcompound_stmts.rst48 compound_stmt: `if_stmt`
59 statement: `stmt_list` NEWLINE | `compound_stmt`
/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.c997 VALIDATER(exec_stmt); VALIDATER(compound_stmt);
1638 int res = (validate_ntype(tree, compound_stmt) in validate_compound_stmt()
3203 case compound_stmt: in validate_node()
/external/python/cpython2/Python/
Dast.c187 case compound_stmt: in num_stmts()
3298 REQ(n, compound_stmt); in ast_for_stmt()
/external/python/cpython3/Python/
Dast.c740 case compound_stmt: in num_stmts()
4010 REQ(n, compound_stmt); in ast_for_stmt()