Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/compiler/
Dast.txt38 AugAssign: node, op*, expr
/external/tensorflow/tensorflow/python/autograph/pyct/
Dtransformer.py489 (list, tuple, gast.Assign, gast.AugAssign)):
/external/python/cpython2/Parser/
DPython.asdl19 | AugAssign(expr target, operator op, expr value)
/external/python/cpython3/Parser/
DPython.asdl30 | AugAssign(expr target, operator op, expr value)
/external/python/cpython2/Include/
DPython-ast.h103 } AugAssign; member
399 #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython2/Python/
Dcompile.c3103 expr_ty e = s->v.AugAssign.target; in compiler_augassign()
3115 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
3116 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
3126 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
3127 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
3134 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
3135 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
Dsymtable.c1064 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1065 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
DPython-ast.c1141 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() function
1164 p->v.AugAssign.target = target; in AugAssign()
1165 p->v.AugAssign.op = op; in AugAssign()
1166 p->v.AugAssign.value = value; in AugAssign()
2286 value = ast2obj_expr(o->v.AugAssign.target); in ast2obj_stmt()
2291 value = ast2obj_operator(o->v.AugAssign.op); in ast2obj_stmt()
2296 value = ast2obj_expr(o->v.AugAssign.value); in ast2obj_stmt()
3890 *out = AugAssign(target, op, value, lineno, col_offset, arena); in obj2ast_stmt()
Dast.c2228 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_expr_stmt()
/external/python/cpython3/Python/
Dast_opt.c711 CALL(astfold_expr, expr_ty, node_->v.AugAssign.target); in astfold_stmt()
712 CALL(astfold_expr, expr_ty, node_->v.AugAssign.value); in astfold_stmt()
Dcompile.c4572 expr_ty e = s->v.AugAssign.target; in compiler_augassign()
4584 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4585 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
4595 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4596 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
4603 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4604 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
Dsymtable.c1210 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1211 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
DPython-ast.c1378 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() function
1401 p->v.AugAssign.target = target; in AugAssign()
1402 p->v.AugAssign.op = op; in AugAssign()
1403 p->v.AugAssign.value = value; in AugAssign()
2755 value = ast2obj_expr(o->v.AugAssign.target); in ast2obj_stmt()
2760 value = ast2obj_operator(o->v.AugAssign.op); in ast2obj_stmt()
2765 value = ast2obj_expr(o->v.AugAssign.value); in ast2obj_stmt()
4693 *out = AugAssign(target, op, value, lineno, col_offset, arena); in obj2ast_stmt()
Dast.c399 return validate_expr(stmt->v.AugAssign.target, Store) && in validate_stmt()
400 validate_expr(stmt->v.AugAssign.value, Load); in validate_stmt()
2943 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_expr_stmt()
/external/python/cpython3/Include/
DPython-ast.h118 } AugAssign; member
470 #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython3/Lib/test/
Dtest_ast.py731 aug = ast.AugAssign(ast.Name("x", ast.Load()), ast.Add(),
734 aug = ast.AugAssign(ast.Name("x", ast.Store()), ast.Add(),
/external/python/cpython2/PC/os2emx/
Dpython27.def692 "AugAssign"
/external/python/cpython2/Doc/library/
Dcompiler.rst256 | :class:`AugAssign` | :attr:`node` | |
/external/python/cpython2/Lib/compiler/
Dtransformer.py376 return AugAssign(lval, op[1], exprNode, lineno=op[2])
Dast.py190 class AugAssign(Node): class