Lines Matching refs:newoperator
1608 operator_ty newoperator; in ast_for_binop() local
1618 newoperator = get_operator(CHILD(n, 1)); in ast_for_binop()
1619 if (!newoperator) in ast_for_binop()
1622 result = BinOp(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_binop()
1632 newoperator = get_operator(next_oper); in ast_for_binop()
1633 if (!newoperator) in ast_for_binop()
1640 tmp_result = BinOp(result, newoperator, tmp, in ast_for_binop()
1912 cmpop_ty newoperator; in ast_for_expr() local
1914 newoperator = ast_for_comp_op(c, CHILD(n, i)); in ast_for_expr()
1915 if (!newoperator) { in ast_for_expr()
1924 asdl_seq_SET(ops, i / 2, newoperator); in ast_for_expr()
2194 operator_ty newoperator; in ast_for_expr_stmt() local
2224 newoperator = ast_for_augassign(c, CHILD(n, 1)); in ast_for_expr_stmt()
2225 if (!newoperator) in ast_for_expr_stmt()
2228 return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_expr_stmt()