Lines Matching refs:newoperator
2532 operator_ty newoperator; in ast_for_binop() local
2542 newoperator = get_operator(c, CHILD(n, 1)); in ast_for_binop()
2543 if (!newoperator) in ast_for_binop()
2546 result = BinOp(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_binop()
2557 newoperator = get_operator(c, next_oper); in ast_for_binop()
2558 if (!newoperator) in ast_for_binop()
2565 tmp_result = BinOp(result, newoperator, tmp, in ast_for_binop()
2850 cmpop_ty newoperator; in ast_for_expr() local
2852 newoperator = ast_for_comp_op(c, CHILD(n, i)); in ast_for_expr()
2853 if (!newoperator) { in ast_for_expr()
2862 asdl_seq_SET(ops, i / 2, newoperator); in ast_for_expr()
3184 operator_ty newoperator; in ast_for_expr_stmt() local
3217 newoperator = ast_for_augassign(c, CHILD(n, 1)); in ast_for_expr_stmt()
3218 if (!newoperator) in ast_for_expr_stmt()
3221 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_expr_stmt()