Home
last modified time | relevance | path

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

/external/python/pycparser/examples/
Dexplore_ast.py133 while_stmt = for_stmt.stmt.block_items[1] variable
139 while_cond = while_stmt.cond
/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow_test.py604 control_flow.while_stmt(
629 control_flow.while_stmt(
657 control_flow.while_stmt(
689 control_flow.while_stmt(
717 control_flow.while_stmt(
738 control_flow.while_stmt(
758 control_flow.while_stmt(
775 control_flow.while_stmt(
838 control_flow.while_stmt(
862 control_flow.while_stmt(
[all …]
D__init__.py43 from tensorflow.python.autograph.operators.control_flow import while_stmt
Dcontrol_flow_deprecated_py2.py817 def while_stmt(test, function
Dcontrol_flow.py811 def while_stmt(test, body, get_state, set_state, symbol_names, opts): function
/external/python/cpython2/Include/
Dgraminit.h41 #define while_stmt 294 macro
/external/python/cpython3/Include/
Dgraminit.h45 #define while_stmt 298 macro
/external/python/cpython3/Lib/
Dsymbol.py66 while_stmt = 298 variable
/external/python/cpython2/Lib/
Dsymbol.py51 while_stmt = 294 variable
/external/python/cpython2/Grammar/
DGrammar65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
67 while_stmt: 'while' test ':' suite ['else' ':' suite]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt68 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
71 while_stmt: 'while' namedexpr_test ':' suite ['else' ':' suite]
Dfixer_util.py373 elif child.type in (syms.if_stmt, syms.while_stmt):
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
87 while_stmt: 'while' test ':' suite ['else' ':' suite]
Dfixer_util.py352 elif child.type in (syms.if_stmt, syms.while_stmt):
/external/python/cpython3/Grammar/
DGrammar114 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
117 while_stmt: 'while' namedexpr_test ':' suite ['else' ':' suite]
Dpython.gram81 | &'while' while_stmt
165 while_stmt[stmt_ty]:
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dgenerated_code.md25 * `while` -> `ag__.while_stmt`
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g227 | while_stmt
237 while_stmt: 'while' test COLON suite ('else' COLON suite)?
/external/python/cpython2/Lib/compiler/
Dtransformer.py521 def while_stmt(self, nodelist): member in Transformer
1477 symbol.while_stmt,
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst46 : | `while_stmt`
112 while_stmt: "while" `expression` ":" `suite`
/external/python/cpython2/Modules/
Dparsermodule.c1648 || (ntype == while_stmt) in validate_compound_stmt()
2092 int res = (validate_ntype(tree, while_stmt) in validate_while()
3257 case while_stmt: in validate_node()
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst50 : | `while_stmt`
120 while_stmt: "while" `assignment_expression` ":" `suite`
/external/python/cpython2/Doc/library/
Dcompiler.rst182 while_stmt: "while" expression ":" suite
/external/python/cpython2/Python/
Dast.c2931 REQ(n, while_stmt); in ast_for_while_stmt()
3302 case while_stmt: in ast_for_stmt()
/external/python/cpython3/Python/
Dast.c3996 REQ(n, while_stmt); in ast_for_while_stmt()
4452 case while_stmt: in ast_for_stmt()