Home
last modified time | relevance | path

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

/external/trappy/trappy/stats/
Dgrammar.py170 arith_expr = Forward()
176 delimitedList(arith_expr))) +
181 arith_expr << operatorPrecedence(func_call | var_id,
203 return arith_expr
/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/cpython2/Include/
Dgraminit.h61 #define arith_expr 314 macro
/external/python/cpython2/Lib/
Dsymbol.py71 arith_expr = 314 variable
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py106 syms.arith_expr, syms.term,
/external/antlr/antlr-3.4/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.c962 VALIDATER(shift_expr); VALIDATER(arith_expr);
2404 return (validate_ntype(tree, arith_expr) in validate_arith_expr()
3269 case arith_expr: in validate_node()
/external/python/cpython2/Python/
Dast.c1945 case arith_expr: in ast_for_expr()