Searched refs:AugAssign (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Parser/ |
D | Python.asdl | 27 | AugAssign(expr target, operator op, expr value)
|
/third_party/python/Python/ |
D | ast.c | 709 ret = validate_expr(state, stmt->v.AugAssign.target, Store) && in validate_stmt() 710 validate_expr(state, stmt->v.AugAssign.value, Load); in validate_stmt()
|
D | ast_opt.c | 694 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()
|
D | symtable.c | 1306 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1307 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
|
D | Python-ast.c | 2122 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()
|
D | compile.c | 5336 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/ |
D | pycore_ast.h | 232 } AugAssign; member
|
/third_party/python/Lib/test/ |
D | test_ast.py | 1214 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/ |
D | ast.rst | 834 .. class:: AugAssign(target, op, value) 849 AugAssign(
|