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 | 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() [all …]
|