Searched refs:_PyPegen_cmpop_expr_pair (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Grammar/ |
D | python.gram | 413 eq_bitwise_or[CmpopExprPair*]: '==' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, Eq, a) } 415 …Pegen_check_barry_as_flufl(p, tok) ? NULL : tok}) a=bitwise_or {_PyPegen_cmpop_expr_pair(p, NotEq,… 416 lte_bitwise_or[CmpopExprPair*]: '<=' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, LtE, a) } 417 lt_bitwise_or[CmpopExprPair*]: '<' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, Lt, a) } 418 gte_bitwise_or[CmpopExprPair*]: '>=' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, GtE, a) } 419 gt_bitwise_or[CmpopExprPair*]: '>' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, Gt, a) } 420 notin_bitwise_or[CmpopExprPair*]: 'not' 'in' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, NotIn, a) } 421 in_bitwise_or[CmpopExprPair*]: 'in' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, In, a) } 422 isnot_bitwise_or[CmpopExprPair*]: 'is' 'not' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, IsNot, a) } 423 is_bitwise_or[CmpopExprPair*]: 'is' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, Is, a) }
|
/external/python/cpython3/Parser/pegen/ |
D | pegen.h | 242 CmpopExprPair *_PyPegen_cmpop_expr_pair(Parser *, cmpop_ty, expr_ty);
|
D | pegen.c | 1469 _PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr) in _PyPegen_cmpop_expr_pair() function
|
D | parse.c | 8556 _res = _PyPegen_cmpop_expr_pair ( p , Eq , a ); in eq_bitwise_or_rule() 8600 _res = _PyPegen_cmpop_expr_pair ( p , NotEq , a ); in noteq_bitwise_or_rule() 8644 _res = _PyPegen_cmpop_expr_pair ( p , LtE , a ); in lte_bitwise_or_rule() 8688 _res = _PyPegen_cmpop_expr_pair ( p , Lt , a ); in lt_bitwise_or_rule() 8732 _res = _PyPegen_cmpop_expr_pair ( p , GtE , a ); in gte_bitwise_or_rule() 8776 _res = _PyPegen_cmpop_expr_pair ( p , Gt , a ); in gt_bitwise_or_rule() 8823 _res = _PyPegen_cmpop_expr_pair ( p , NotIn , a ); in notin_bitwise_or_rule() 8867 _res = _PyPegen_cmpop_expr_pair ( p , In , a ); in in_bitwise_or_rule() 8914 _res = _PyPegen_cmpop_expr_pair ( p , IsNot , a ); in isnot_bitwise_or_rule() 8958 _res = _PyPegen_cmpop_expr_pair ( p , Is , a ); in is_bitwise_or_rule()
|