Home
last modified time | relevance | path

Searched refs:with_stmt (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Grammar/
DGrammar70 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
71 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
80 with_stmt: 'with' with_item (',' with_item)* ':' suite
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt87 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
88 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
97 with_stmt: 'with' with_item (',' with_item)* ':' suite
/external/python/cpython2/Include/
Dgraminit.h44 #define with_stmt 297 macro
/external/python/cpython3/Include/
Dgraminit.h48 #define with_stmt 301 macro
/external/python/cpython2/Lib/
Dsymbol.py54 with_stmt = 297 variable
/external/python/cpython3/Lib/
Dsymbol.py58 with_stmt = 301 variable
/external/python/cpython2/Grammar/
DGrammar65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
74 with_stmt: 'with' with_item (',' with_item)* ':' suite
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
94 with_stmt: 'with' with_item (',' with_item)* ':' suite
/external/llvm/include/llvm/Support/
DDwarf.def73 HANDLE_DW_TAG(0x0022, with_stmt)
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst51 : | `with_stmt`
386 with_stmt: "with" with_item ("," with_item)* ":" `suite`
761 async_with_stmt: "async" `with_stmt`
/external/python/cpython2/Lib/compiler/
Dtransformer.py552 def with_stmt(self, nodelist): member in Transformer
1480 symbol.with_stmt,
/external/python/cpython2/Modules/
Dparsermodule.c1609 || (ntype == with_stmt) in validate_compound_stmt()
2679 int ok = (validate_ntype(tree, with_stmt) in validate_with_stmt()
3117 case with_stmt: in validate_node()
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst49 : | `with_stmt`
360 with_stmt: "with" with_item ("," with_item)* ":" `suite`
/external/elfutils/libdw/
Dknown-dwarf.h620 DWARF_ONE_KNOWN_DW_TAG (with_stmt, DW_TAG_with_stmt) \
/external/python/cpython3/Python/
Dast.c1665 case with_stmt: in ast_for_async_stmt()
3882 REQ(n, with_stmt); in ast_for_with_stmt()
4022 case with_stmt: in ast_for_stmt()
/external/python/cpython2/Python/
Dast.c3172 REQ(n, with_stmt); in ast_for_with_stmt()
3306 case with_stmt: in ast_for_stmt()