/external/tensorflow/tensorflow/python/autograph/operators/ |
D | control_flow_test.py | 76 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__.py | 41 from tensorflow.python.autograph.operators.control_flow import for_stmt
|
D | control_flow_deprecated_py2.py | 279 def for_stmt(iter_, function
|
D | control_flow.py | 369 def for_stmt(iter_, extra_test, body, get_state, set_state, symbol_names, opts): function
|
/external/python/pycparser/examples/ |
D | explore_ast.py | 123 for_stmt = function_body.block_items[2] variable 133 while_stmt = for_stmt.stmt.block_items[1]
|
/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/cpython2/Include/ |
D | graminit.h | 42 #define for_stmt 295 macro
|
/external/python/cpython3/Include/ |
D | graminit.h | 46 #define for_stmt 299 macro
|
/external/python/cpython3/Lib/ |
D | symbol.py | 67 for_stmt = 299 variable
|
/external/python/cpython2/Lib/ |
D | symbol.py | 52 for_stmt = 295 variable
|
/external/python/cpython3/Grammar/ |
D | Grammar | 114 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]
|
D | python.gram | 79 | &('for' | ASYNC) for_stmt 168 for_stmt[stmt_ty]:
|
/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/tensorflow/tensorflow/python/autograph/g3doc/reference/ |
D | generated_code.md | 26 * `for` -> `ag__.for_stmt`
|
D | control_flow.md | 421 break_, = ag__.for_stmt(range(10), extra_test, ..., (break_,))
|
/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/rust/crates/protobuf-codegen/src/ |
D | code_writer.rs | 355 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/ |
D | compound_stmts.rst | 51 : | `for_stmt` 156 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite` 800 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/Doc/reference/ |
D | compound_stmts.rst | 47 : | `for_stmt` 147 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
|
/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/cpython3/Python/ |
D | ast.c | 1819 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()
|