Home
last modified time | relevance | path

Searched refs:arith_expr (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar98 shift_expr: arith_expr (('<<'|'>>') arith_expr)*
99 arith_expr: term (('+'|'-') term)*
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt120 shift_expr: arith_expr (('<<'|'>>') arith_expr)*
121 arith_expr: term (('+'|'-') term)*
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt145 shift_expr: arith_expr (('<<'|'>>') arith_expr)*
146 arith_expr: term (('+'|'-') term)*
/external/python/cpython2/Include/
Dgraminit.h61 #define arith_expr 314 macro
/external/python/cpython2/Lib/
Dsymbol.py71 arith_expr = 314 variable
/external/yapf/yapftests/
Dcomment_splicer_test.py329 arith_expr = self._FindNthChildNamed(tree, 'arith_expr', 1)
330 self._AssertNodeIsComment(arith_expr.children[-1], '# com 3')
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_has_key.py105 syms.arith_expr, syms.term,
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py106 syms.arith_expr, syms.term,
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g296 shift_expr: arith_expr ((LEFTSHIFT|RIGHTSHIFT) arith_expr)*
299 arith_expr: term ((PLUS|MINUS) term)*
/external/python/cpython2/Demo/parser/
Dexample.py182 (symbol.arith_expr,
/external/python/cpython2/Lib/compiler/
Dtransformer.py682 def arith_expr(self, nodelist): member in Transformer
1438 symbol.arith_expr,
1493 symbol.arith_expr,
1515 symbol.arith_expr,
/external/python/cpython2/Modules/
Dparsermodule.c1004 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/
Dast.c1945 case arith_expr: in ast_for_expr()