/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | ast.txt | 38 AugAssign: node, op*, expr
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 19 | AugAssign(expr target, operator op, expr value)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | compile.c | 3121 expr_ty e = s->v.AugAssign.target; in compiler_augassign() 3133 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 3134 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign() 3144 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 3145 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign() 3152 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 3153 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
|
D | symtable.c | 1056 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1057 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
|
D | Python-ast.c | 1124 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() function 1147 p->v.AugAssign.target = target; in AugAssign() 1148 p->v.AugAssign.op = op; in AugAssign() 1149 p->v.AugAssign.value = value; in AugAssign() 2269 value = ast2obj_expr(o->v.AugAssign.target); in ast2obj_stmt() 2274 value = ast2obj_operator(o->v.AugAssign.op); in ast2obj_stmt() 2279 value = ast2obj_expr(o->v.AugAssign.value); in ast2obj_stmt() 3833 *out = AugAssign(target, op, value, lineno, col_offset, arena); in obj2ast_stmt()
|
D | ast.c | 2223 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_expr_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | compile.c | 3141 expr_ty e = s->v.AugAssign.target; in compiler_augassign() 3153 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 3154 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign() 3164 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 3165 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign() 3172 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign() 3173 ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); in compiler_augassign()
|
D | symtable.c | 1058 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1059 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() 3850 *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()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | ast.py | 190 class AugAssign(Node): class
|
D | transformer.py | 376 return AugAssign(lval, op[1], exprNode, lineno=op[2])
|