Searched refs:while_stmt (Results 1 - 9 of 9) sorted by relevance

/external/python/cpython2/Include/
H A Dgraminit.h41 #define while_stmt 294 macro
/external/python/cpython2/Lib/
H A Dsymbol.py51 while_stmt = 294 variable
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g227 | while_stmt
237 while_stmt: 'while' test COLON suite ('else' COLON suite)?
/external/python/cpython2/Lib/lib2to3/
H A Dfixer_util.py352 elif child.type in (syms.if_stmt, syms.while_stmt):
/external/v8/src/asmjs/
H A Dasm-typer.h298 AsmType* ValidateWhileStatement(WhileStatement* while_stmt);
H A Dasm-typer.cc1403 AsmType* AsmTyper::ValidateWhileStatement(WhileStatement* while_stmt) { argument
1405 RECURSE(cond_type = ValidateExpression(while_stmt->cond()));
1407 FAIL(while_stmt->cond(), "While condition must be type int.");
1410 if (auto* body = while_stmt->body()) {
/external/python/cpython2/Modules/
H A Dparsermodule.c1591 * if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
1606 || (ntype == while_stmt)
2050 int res = (validate_ntype(tree, while_stmt)
3215 case while_stmt:
/external/python/cpython2/Lib/compiler/
H A Dtransformer.py521 def while_stmt(self, nodelist): member in class:Transformer
1477 symbol.while_stmt,
/external/python/cpython2/Python/
H A Dast.c2928 /* while_stmt: 'while' test ':' suite ['else' ':' suite] */
2929 REQ(n, while_stmt);
3292 /* compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt
3300 case while_stmt:

Completed in 276 milliseconds