Searched refs:_PyAST_BoolOp (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_ast.h | 711 expr_ty _PyAST_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int
|
/third_party/python/Grammar/ |
D | python.gram | 588 | a=conjunction b=('or' c=conjunction { c })+ { _PyAST_BoolOp( 594 | a=inversion b=('and' c=inversion { c })+ { _PyAST_BoolOp(
|
/third_party/python/Python/ |
D | Python-ast.c | 2544 _PyAST_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int col_offset, in _PyAST_BoolOp() function 7982 *out = _PyAST_BoolOp(op, values, lineno, col_offset, end_lineno, in obj2ast_expr()
|
/third_party/python/Parser/ |
D | parser.c | 12008 …_res = _PyAST_BoolOp ( Or , CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) )… in disjunction_rule() 12097 …_res = _PyAST_BoolOp ( And , CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) … in conjunction_rule()
|