Searched refs:_PyAST_IfExp (Results 1 – 4 of 4) sorted by relevance
| /third_party/python/Include/internal/ |
| D | pycore_ast.h | 726 expr_ty _PyAST_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno,
|
| /third_party/python/Grammar/ |
| D | python.gram | 533 | 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/ |
| D | Python-ast.c | 2685 _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/ |
| D | parser.c | 10961 _res = _PyAST_IfExp ( b , a , c , EXTRA ); in expression_rule() 18754 _res = _PyAST_IfExp ( b , a , c , EXTRA ); in expression_without_invalid_rule()
|