Searched refs:newoperator (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | ast.c | 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() [all …]
|
/external/python/cpython3/Python/ |
D | ast.c | 2307 operator_ty newoperator; in ast_for_binop() local 2317 newoperator = get_operator(CHILD(n, 1)); in ast_for_binop() 2318 if (!newoperator) in ast_for_binop() 2321 result = BinOp(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_binop() 2331 newoperator = get_operator(next_oper); in ast_for_binop() 2332 if (!newoperator) in ast_for_binop() 2339 tmp_result = BinOp(result, newoperator, tmp, in ast_for_binop() 2618 cmpop_ty newoperator; in ast_for_expr() local 2620 newoperator = ast_for_comp_op(c, CHILD(n, i)); in ast_for_expr() 2621 if (!newoperator) { in ast_for_expr() [all …]
|