Home
last modified time | relevance | path

Searched refs:AugAssign (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Parser/
DPython.asdl27 | AugAssign(expr target, operator op, expr value)
/third_party/python/Python/
Dast.c709 ret = validate_expr(state, stmt->v.AugAssign.target, Store) && in validate_stmt()
710 validate_expr(state, stmt->v.AugAssign.value, Load); in validate_stmt()
Dast_opt.c694 CALL(astfold_expr, expr_ty, node_->v.AugAssign.target); in astfold_stmt()
695 CALL(astfold_expr, expr_ty, node_->v.AugAssign.value); in astfold_stmt()
Dsymtable.c1306 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1307 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
DPython-ast.c2122 p->v.AugAssign.target = target; in _PyAST_AugAssign()
2123 p->v.AugAssign.op = op; in _PyAST_AugAssign()
2124 p->v.AugAssign.value = value; in _PyAST_AugAssign()
3805 value = ast2obj_expr(state, o->v.AugAssign.target); in ast2obj_stmt()
3810 value = ast2obj_operator(state, o->v.AugAssign.op); in ast2obj_stmt()
3815 value = ast2obj_expr(state, o->v.AugAssign.value); in ast2obj_stmt()
Dcompile.c5336 expr_ty e = s->v.AugAssign.target; in compiler_augassign()
5375 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
5376 ADDOP(c, inplace_binop(s->v.AugAssign.op)); in compiler_augassign()
/third_party/python/Include/internal/
Dpycore_ast.h232 } AugAssign; member
/third_party/python/Lib/test/
Dtest_ast.py1214 aug = ast.AugAssign(ast.Name("x", ast.Load()), ast.Add(),
1217 aug = ast.AugAssign(ast.Name("x", ast.Store()), ast.Add(),
/third_party/python/Doc/library/
Dast.rst834 .. class:: AugAssign(target, op, value)
849 AugAssign(