/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 38 AugAssign: node, op*, expr
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | transformer.py | 455 (list, tuple, gast.Assign, gast.AugAssign)):
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 19 | AugAssign(expr target, operator op, expr value)
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 27 | AugAssign(expr target, operator op, expr value)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 103 } AugAssign; member 399 #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) macro
|
/external/python/cpython2/Python/ |
D | compile.c | 3103 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()
|
D | symtable.c | 1064 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1065 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
|
D | Python-ast.c | 1141 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()
|
D | ast.c | 2228 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_expr_stmt()
|
/external/python/cpython3/Python/ |
D | ast_opt.c | 654 CALL(astfold_expr, expr_ty, node_->v.AugAssign.target); in astfold_stmt() 655 CALL(astfold_expr, expr_ty, node_->v.AugAssign.value); in astfold_stmt()
|
D | symtable.c | 1271 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1272 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
|
D | Python-ast.c | 2127 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() function 2150 p->v.AugAssign.target = target; in AugAssign() 2151 p->v.AugAssign.op = op; in AugAssign() 2152 p->v.AugAssign.value = value; in AugAssign() 3600 value = ast2obj_expr(state, o->v.AugAssign.target); in ast2obj_stmt() 3605 value = ast2obj_operator(state, o->v.AugAssign.op); in ast2obj_stmt() 3610 value = ast2obj_expr(state, o->v.AugAssign.value); in ast2obj_stmt() 5810 *out = AugAssign(target, op, value, lineno, col_offset, end_lineno, in obj2ast_stmt()
|
D | ast.c | 373 return validate_expr(stmt->v.AugAssign.target, Store) && in validate_stmt() 374 validate_expr(stmt->v.AugAssign.value, Load); in validate_stmt() 3221 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_expr_stmt()
|
D | compile.c | 5137 expr_ty e = s->v.AugAssign.target; in compiler_augassign() 5169 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 5170 ADDOP(c, inplace_binop(s->v.AugAssign.op)); in compiler_augassign()
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 131 } AugAssign; member 494 #define AugAssign(a0, a1, a2, a3, a4, a5, a6, a7) _Py_AugAssign(a0, a1, a2, a3, a4, a5, a6, a7) macro
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 692 "AugAssign"
|
/external/python/cpython3/Lib/test/ |
D | test_ast.py | 1142 aug = ast.AugAssign(ast.Name("x", ast.Load()), ast.Add(), 1145 aug = ast.AugAssign(ast.Name("x", ast.Store()), ast.Add(),
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 256 | :class:`AugAssign` | :attr:`node` | |
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 376 return AugAssign(lval, op[1], exprNode, lineno=op[2])
|
D | ast.py | 190 class AugAssign(Node): class
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 828 .. class:: AugAssign(target, op, value) 843 AugAssign(
|