Home
last modified time | relevance | path

Searched refs:_PyAST_BinOp (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Grammar/
Dpython.gram281 _PyAST_BinOp(real, Add, imag, EXTRA) }
283 _PyAST_BinOp(real, Sub, imag, EXTRA) }
634 | a=bitwise_or '|' b=bitwise_xor { _PyAST_BinOp(a, BitOr, b, EXTRA) }
637 | a=bitwise_xor '^' b=bitwise_and { _PyAST_BinOp(a, BitXor, b, EXTRA) }
640 | a=bitwise_and '&' b=shift_expr { _PyAST_BinOp(a, BitAnd, b, EXTRA) }
643 | a=shift_expr '<<' b=sum { _PyAST_BinOp(a, LShift, b, EXTRA) }
644 | a=shift_expr '>>' b=sum { _PyAST_BinOp(a, RShift, b, EXTRA) }
648 | a=sum '+' b=term { _PyAST_BinOp(a, Add, b, EXTRA) }
649 | a=sum '-' b=term { _PyAST_BinOp(a, Sub, b, EXTRA) }
652 | a=term '*' b=factor { _PyAST_BinOp(a, Mult, b, EXTRA) }
[all …]
/third_party/python/Include/internal/
Dpycore_ast.h717 expr_ty _PyAST_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno,
/third_party/python/Parser/
Dparser.c6564 _res = _PyAST_BinOp ( real , Add , imag , EXTRA ); in complex_number_rule()
6603 _res = _PyAST_BinOp ( real , Sub , imag , EXTRA ); in complex_number_rule()
13093 _res = _PyAST_BinOp ( a , BitOr , b , EXTRA ); in bitwise_or_raw()
13219 _res = _PyAST_BinOp ( a , BitXor , b , EXTRA ); in bitwise_xor_raw()
13345 _res = _PyAST_BinOp ( a , BitAnd , b , EXTRA ); in bitwise_and_raw()
13471 _res = _PyAST_BinOp ( a , LShift , b , EXTRA ); in shift_expr_raw()
13510 _res = _PyAST_BinOp ( a , RShift , b , EXTRA ); in shift_expr_raw()
13636 _res = _PyAST_BinOp ( a , Add , b , EXTRA ); in sum_raw()
13675 _res = _PyAST_BinOp ( a , Sub , b , EXTRA ); in sum_raw()
13807 _res = _PyAST_BinOp ( a , Mult , b , EXTRA ); in term_raw()
[all …]
/third_party/python/Python/
DPython-ast.c2595 _PyAST_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int in _PyAST_BinOp() function
8096 *out = _PyAST_BinOp(left, op, right, lineno, col_offset, end_lineno, in obj2ast_expr()