/external/tensorflow/tensorflow/python/autograph/operators/ |
D | control_flow_test.py | 34 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__.py | 40 from tensorflow.python.autograph.operators.control_flow import for_stmt
|
D | control_flow.py | 32 def for_stmt(iter_, extra_test, body, init_state): function
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 68 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]
|
D | fixer_util.py | 368 if child.type == syms.for_stmt:
|
/external/python/cpython3/Grammar/ |
D | Grammar | 70 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/ |
D | graminit.h | 46 #define for_stmt 299 macro
|
/external/python/cpython2/Include/ |
D | graminit.h | 42 #define for_stmt 295 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 52 for_stmt = 295 variable
|
/external/python/cpython3/Lib/ |
D | symbol.py | 56 for_stmt = 299 variable
|
/external/python/cpython2/Grammar/ |
D | Grammar | 65 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/ |
D | Grammar.txt | 85 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]
|
D | fixer_util.py | 347 if child.type == syms.for_stmt:
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 228 | for_stmt 240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)?
|
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/ |
D | algorithms.ipynb | 176 " 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/ |
D | compound_stmts.rst | 50 : | `for_stmt` 155 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite` 760 async_for_stmt: "async" `for_stmt`
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 534 def for_stmt(self, nodelist): member in Transformer 1478 symbol.for_stmt,
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1649 || (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/ |
D | compound_stmts.rst | 47 : | `for_stmt` 147 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
|
/external/python/cpython3/Python/ |
D | ast.c | 1649 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/ |
D | ast.c | 2978 REQ(n, for_stmt); in ast_for_for_stmt() 3304 case for_stmt: in ast_for_stmt()
|