Home
last modified time | relevance | path

Searched refs:for_stmt (Results 1 – 25 of 27) sorted by relevance

12

/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow_test.py76 control_flow.for_stmt(
96 control_flow.for_stmt(
118 control_flow.for_stmt(
140 control_flow.for_stmt(
163 control_flow.for_stmt(
186 control_flow.for_stmt(
214 control_flow.for_stmt(
236 control_flow.for_stmt(
263 control_flow.for_stmt(
294 control_flow.for_stmt(
[all …]
D__init__.py41 from tensorflow.python.autograph.operators.control_flow import for_stmt
Dcontrol_flow_deprecated_py2.py279 def for_stmt(iter_, function
Dcontrol_flow.py369 def for_stmt(iter_, extra_test, body, get_state, set_state, symbol_names, opts): function
/external/python/pycparser/examples/
Dexplore_ast.py123 for_stmt = function_body.block_items[2] variable
133 while_stmt = for_stmt.stmt.block_items[1]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt68 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
69 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
72 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
Dfixer_util.py368 if child.type == syms.for_stmt:
/external/python/cpython2/Include/
Dgraminit.h42 #define for_stmt 295 macro
/external/python/cpython3/Include/
Dgraminit.h46 #define for_stmt 299 macro
/external/python/cpython3/Lib/
Dsymbol.py67 for_stmt = 299 variable
/external/python/cpython2/Lib/
Dsymbol.py52 for_stmt = 295 variable
/external/python/cpython3/Grammar/
DGrammar114 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
115 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
118 for_stmt: 'for' exprlist 'in' testlist ':' [TYPE_COMMENT] suite ['else' ':' suite]
Dpython.gram79 | &('for' | ASYNC) for_stmt
168 for_stmt[stmt_ty]:
/external/python/cpython2/Grammar/
DGrammar65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
68 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
88 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
Dfixer_util.py347 if child.type == syms.for_stmt:
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dgenerated_code.md26 * `for` -> `ag__.for_stmt`
Dcontrol_flow.md421 break_, = ag__.for_stmt(range(10), extra_test, ..., (break_,))
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g228 | for_stmt
240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)?
/external/rust/crates/protobuf-codegen/src/
Dcode_writer.rs355 pub fn for_stmt<S1: AsRef<str>, S2: AsRef<str>, F>(&mut self, over: S1, varn: S2, cb: F) in for_stmt() method
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst51 : | `for_stmt`
156 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
800 async_for_stmt: "async" `for_stmt`
/external/python/cpython2/Lib/compiler/
Dtransformer.py534 def for_stmt(self, nodelist): member in Transformer
1478 symbol.for_stmt,
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst47 : | `for_stmt`
147 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
/external/python/cpython2/Modules/
Dparsermodule.c1649 || (ntype == for_stmt) in validate_compound_stmt()
2112 int res = (validate_ntype(tree, for_stmt) in validate_for()
3260 case for_stmt: in validate_node()
/external/python/cpython3/Python/
Dast.c1819 case for_stmt: in ast_for_async_stmt()
4057 REQ(n, for_stmt); in ast_for_for_stmt()
4454 case for_stmt: in ast_for_stmt()

12