Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_ast.h726 expr_ty _PyAST_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno,
/third_party/python/Grammar/
Dpython.gram533 | a=disjunction 'if' b=disjunction 'else' c=expression { _PyAST_IfExp(b, a, c, EXTRA) }
850 | a=disjunction 'if' b=disjunction 'else' c=expression { _PyAST_IfExp(b, a, c, EXTRA) }
/third_party/python/Python/
DPython-ast.c2685 _PyAST_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int in _PyAST_IfExp() function
8258 *out = _PyAST_IfExp(test, body, orelse, lineno, col_offset, end_lineno, in obj2ast_expr()
/third_party/python/Parser/
Dparser.c10961 _res = _PyAST_IfExp ( b , a , c , EXTRA ); in expression_rule()
18754 _res = _PyAST_IfExp ( b , a , c , EXTRA ); in expression_without_invalid_rule()