Home
last modified time | relevance | path

Searched refs:AsyncFor (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Python/
Dast_opt.c728 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target); in astfold_stmt()
729 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.iter); in astfold_stmt()
730 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.body); in astfold_stmt()
731 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.orelse); in astfold_stmt()
Dsymtable.c1363 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1364 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1365 VISIT_SEQ(st, stmt, s->v.AsyncFor.body); in symtable_visit_stmt()
1366 if (s->v.AsyncFor.orelse) in symtable_visit_stmt()
1367 VISIT_SEQ(st, stmt, s->v.AsyncFor.orelse); in symtable_visit_stmt()
DPython-ast.c1466 AsyncFor(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, int in AsyncFor() function
1484 p->v.AsyncFor.target = target; in AsyncFor()
1485 p->v.AsyncFor.iter = iter; in AsyncFor()
1486 p->v.AsyncFor.body = body; in AsyncFor()
1487 p->v.AsyncFor.orelse = orelse; in AsyncFor()
2822 value = ast2obj_expr(o->v.AsyncFor.target); in ast2obj_stmt()
2827 value = ast2obj_expr(o->v.AsyncFor.iter); in ast2obj_stmt()
2832 value = ast2obj_list(o->v.AsyncFor.body, ast2obj_stmt); in ast2obj_stmt()
2837 value = ast2obj_list(o->v.AsyncFor.orelse, ast2obj_stmt); in ast2obj_stmt()
4960 *out = AsyncFor(target, iter, body, orelse, lineno, col_offset, arena); in obj2ast_stmt()
Dast.c418 return validate_expr(stmt->v.AsyncFor.target, Store) && in validate_stmt()
419 validate_expr(stmt->v.AsyncFor.iter, Load) && in validate_stmt()
420 validate_body(stmt->v.AsyncFor.body, "AsyncFor") && in validate_stmt()
421 validate_stmts(stmt->v.AsyncFor.orelse); in validate_stmt()
3721 return AsyncFor(target, expression, suite_seq, seq, in ast_for_for_stmt()
Dcompile.c1434 res = find_ann(st->v.AsyncFor.body) || in find_ann()
1435 find_ann(st->v.AsyncFor.orelse); in find_ann()
2395 VISIT(c, expr, s->v.AsyncFor.iter); in compiler_async_for()
2408 VISIT(c, expr, s->v.AsyncFor.target); in compiler_async_for()
2422 VISIT_SEQ(c, stmt, s->v.AsyncFor.body); in compiler_async_for()
/external/python/cpython3/Parser/
DPython.asdl36 | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse)
/external/python/cpython3/Include/
DPython-ast.h139 } AsyncFor; member
479 #define AsyncFor(a0, a1, a2, a3, a4, a5, a6) _Py_AsyncFor(a0, a1, a2, a3, a4, a5, a6) macro
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst295 Fix the ``col_offset`` attribute for ast nodes ``ast.AsyncFor``,