Home
last modified time | relevance | path

Searched refs:comp_op (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h56 #define comp_op 309 macro
/external/python/cpython2/Lib/
Dsymbol.py66 comp_op = 309 variable
/external/python/cpython2/Grammar/
DGrammar93 comparison: expr (comp_op expr)*
94 comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py99 n_op = pytree.Node(syms.comp_op, (n_not, n_op))
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt114 comparison: expr (comp_op expr)*
115 comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g271 comparison: expr (comp_op expr)*
274 comp_op: LESS
/external/python/cpython2/Modules/
Dparsermodule.c960 VALIDATER(comp_op); VALIDATER(expr);
2278 if (!validate_ntype(tree, comp_op)) in validate_comp_op()
3254 case comp_op: in validate_node()
/external/python/cpython2/Lib/compiler/
Dtransformer.py345 def comp_op(self, nodelist): member in Transformer
/external/python/cpython2/Python/
Dast.c531 REQ(n, comp_op); in ast_for_comp_op()