Home
last modified time | relevance | path

Searched refs:exec_stmt (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h37 #define exec_stmt 290 macro
/external/python/cpython2/Lib/
Dsymbol.py47 exec_stmt = 290 variable
/external/python/cpython2/Grammar/
DGrammar36 import_stmt | global_stmt | exec_stmt | assert_stmt)
62 exec_stmt: 'exec' expr ['in' test [',' test]]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt55 import_stmt | global_stmt | exec_stmt | assert_stmt)
82 exec_stmt: 'exec' expr ['in' test [',' test]]
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g139 | exec_stmt
219 exec_stmt: 'exec' expr ('in' test (COMMA test)?)?
/external/python/cpython2/Modules/
Dparsermodule.c955 VALIDATER(exec_stmt); VALIDATER(compound_stmt);
1573 || (ntype == exec_stmt)) in validate_small_stmt()
2005 int res = (validate_ntype(tree, exec_stmt) in validate_exec_stmt()
3206 case exec_stmt: in validate_node()
/external/python/cpython2/Lib/compiler/
Dtransformer.py483 def exec_stmt(self, nodelist): member in Transformer
1474 symbol.exec_stmt,
/external/python/cpython2/Doc/reference/
Dsimple_stmts.rst29 : | `exec_stmt`
993 exec_stmt: "exec" `or_expr` ["in" `expression` ["," `expression`]]
/external/python/cpython2/Python/
Dast.c2678 REQ(n, exec_stmt); in ast_for_exec_stmt()
3280 case exec_stmt: in ast_for_stmt()