Home
last modified time | relevance | path

Searched refs:_PyAST_BoolOp (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ast.h711 expr_ty _PyAST_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int
/third_party/python/Grammar/
Dpython.gram588 | a=conjunction b=('or' c=conjunction { c })+ { _PyAST_BoolOp(
594 | a=inversion b=('and' c=inversion { c })+ { _PyAST_BoolOp(
/third_party/python/Python/
DPython-ast.c2544 _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/
Dparser.c12008 …_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()