Searched refs:arith_expr (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Grammar/ |
D | Grammar | 98 shift_expr: arith_expr (('<<'|'>>') arith_expr)* 99 arith_expr: term (('+'|'-') term)*
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 120 shift_expr: arith_expr (('<<'|'>>') arith_expr)* 121 arith_expr: term (('+'|'-') term)*
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 145 shift_expr: arith_expr (('<<'|'>>') arith_expr)* 146 arith_expr: term (('+'|'-') term)*
|
/external/python/cpython2/Include/ |
D | graminit.h | 61 #define arith_expr 314 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 71 arith_expr = 314 variable
|
/external/yapf/yapftests/ |
D | comment_splicer_test.py | 329 arith_expr = self._FindNthChildNamed(tree, 'arith_expr', 1) 330 self._AssertNodeIsComment(arith_expr.children[-1], '# com 3')
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 105 syms.arith_expr, syms.term,
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 106 syms.arith_expr, syms.term,
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 296 shift_expr: arith_expr ((LEFTSHIFT|RIGHTSHIFT) arith_expr)* 299 arith_expr: term ((PLUS|MINUS) term)*
|
/external/python/cpython2/Demo/parser/ |
D | example.py | 182 (symbol.arith_expr,
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 682 def arith_expr(self, nodelist): member in Transformer 1438 symbol.arith_expr, 1493 symbol.arith_expr, 1515 symbol.arith_expr,
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1004 VALIDATER(shift_expr); VALIDATER(arith_expr); 2446 return (validate_ntype(tree, arith_expr) in validate_arith_expr() 3311 case arith_expr: in validate_node()
|
/external/python/cpython2/Python/ |
D | ast.c | 1945 case arith_expr: in ast_for_expr()
|