Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow_test.py34 s = control_flow.for_stmt(
43 s = control_flow.for_stmt(
51 s = control_flow.for_stmt(
63 s = control_flow.for_stmt(
D__init__.py40 from tensorflow.python.autograph.operators.control_flow import for_stmt
Dcontrol_flow.py32 def for_stmt(iter_, extra_test, body, init_state): function
/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/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)
74 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
/external/python/cpython3/Include/
Dgraminit.h46 #define for_stmt 299 macro
/external/python/cpython2/Include/
Dgraminit.h42 #define for_stmt 295 macro
/external/python/cpython2/Lib/
Dsymbol.py52 for_stmt = 295 variable
/external/python/cpython3/Lib/
Dsymbol.py56 for_stmt = 299 variable
/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/antlr/runtime/JavaScript/tests/functional/
DPython.g228 | for_stmt
240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)?
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/
Dalgorithms.ipynb176 " f1, f2 = ag__.for_stmt(ag__.utils.dynamic_builtin(range, n),\n",
1406 " num_neighbors = ag__.for_stmt(directions, extra_test,\n",
1438 " new_board_2 = ag__.for_stmt(ag__.utils.dynamic_builtin(range,\n",
1443 " new_board = ag__.for_stmt(ag__.utils.dynamic_builtin(range, ag__.\n",
1468 " board, boards = ag__.for_stmt(ag__.utils.dynamic_builtin(range, tf.\n",
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst50 : | `for_stmt`
155 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
760 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/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/cpython2/Doc/reference/
Dcompound_stmts.rst47 : | `for_stmt`
147 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
/external/python/cpython3/Python/
Dast.c1649 case for_stmt: in ast_for_async_stmt()
3693 REQ(n, for_stmt); in ast_for_for_stmt()
4016 case for_stmt: in ast_for_stmt()
/external/python/cpython2/Python/
Dast.c2978 REQ(n, for_stmt); in ast_for_for_stmt()
3304 case for_stmt: in ast_for_stmt()