Lines Matching refs:expr_ty
12 expr_as_unicode(expr_ty e, int level);
14 append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level);
16 append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec);
18 append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec);
99 append_ast_boolop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_boolop()
113 APPEND_EXPR((expr_ty)asdl_seq_GET(values, i), pr + 1); in append_ast_boolop()
121 append_ast_binop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_binop()
156 append_ast_unaryop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_unaryop()
210 APPEND_EXPR((expr_ty)asdl_seq_GET(args->defaults, di), PR_TEST); in append_ast_args()
232 expr_ty default_ = (expr_ty)asdl_seq_GET(args->kw_defaults, di); in append_ast_args()
251 append_ast_lambda(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_lambda()
263 append_ast_ifexp(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_ifexp()
276 append_ast_dict(_PyUnicodeWriter *writer, expr_ty e) in append_ast_dict()
279 expr_ty key_node; in append_ast_dict()
286 key_node = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i); in append_ast_dict()
290 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Dict.values, i), PR_TEST); in append_ast_dict()
294 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Dict.values, i), PR_EXPR); in append_ast_dict()
302 append_ast_set(_PyUnicodeWriter *writer, expr_ty e) in append_ast_set()
310 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Set.elts, i), PR_TEST); in append_ast_set()
317 append_ast_list(_PyUnicodeWriter *writer, expr_ty e) in append_ast_list()
325 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.List.elts, i), PR_TEST); in append_ast_list()
332 append_ast_tuple(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_tuple()
346 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Tuple.elts, i), PR_TEST); in append_ast_tuple()
367 APPEND_EXPR((expr_ty)asdl_seq_GET(gen->ifs, i), PR_TEST + 1); in append_ast_comprehension()
386 append_ast_genexp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_genexp()
395 append_ast_listcomp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_listcomp()
404 append_ast_setcomp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_setcomp()
413 append_ast_dictcomp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_dictcomp()
424 append_ast_compare(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_compare()
480 APPEND_EXPR((expr_ty)asdl_seq_GET(comparators, i), PR_CMP + 1); in append_ast_compare()
506 append_ast_call(_PyUnicodeWriter *writer, expr_ty e) in append_ast_call()
510 expr_ty expr; in append_ast_call()
517 expr = (expr_ty)asdl_seq_GET(e->v.Call.args, 0); in append_ast_call()
529 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Call.args, i), PR_TEST); in append_ast_call()
568 append_fstring_element(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec) in append_fstring_element()
600 (expr_ty)asdl_seq_GET(values, i), in build_fstring_body()
612 append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec) in append_joinedstr()
635 append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec) in append_formattedvalue()
693 append_ast_attribute(_PyUnicodeWriter *writer, expr_ty e) in append_ast_attribute()
764 append_ast_subscript(_PyUnicodeWriter *writer, expr_ty e) in append_ast_subscript()
773 append_ast_starred(_PyUnicodeWriter *writer, expr_ty e) in append_ast_starred()
781 append_ast_yield(_PyUnicodeWriter *writer, expr_ty e) in append_ast_yield()
793 append_ast_yield_from(_PyUnicodeWriter *writer, expr_ty e) in append_ast_yield_from()
801 append_ast_await(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_await()
811 append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_expr()
905 expr_as_unicode(expr_ty e, int level) in expr_as_unicode()
921 _PyAST_ExprAsUnicode(expr_ty e) in _PyAST_ExprAsUnicode()