• Home
  • Raw
  • Download

Lines Matching refs:expr_ty

15 expr_as_unicode(expr_ty e, int level);
17 append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level);
19 append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec);
21 append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e);
23 append_ast_slice(_PyUnicodeWriter *writer, expr_ty e);
117 append_ast_boolop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_boolop()
131 APPEND_EXPR((expr_ty)asdl_seq_GET(values, i), pr + 1); in append_ast_boolop()
139 append_ast_binop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_binop()
174 append_ast_unaryop(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_unaryop()
233 APPEND_EXPR((expr_ty)asdl_seq_GET(args->defaults, di), PR_TEST); in append_ast_args()
258 expr_ty default_ = (expr_ty)asdl_seq_GET(args->kw_defaults, di); in append_ast_args()
277 append_ast_lambda(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_lambda()
291 append_ast_ifexp(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_ifexp()
304 append_ast_dict(_PyUnicodeWriter *writer, expr_ty e) in append_ast_dict()
307 expr_ty key_node; in append_ast_dict()
314 key_node = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i); in append_ast_dict()
318 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Dict.values, i), PR_TEST); in append_ast_dict()
322 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Dict.values, i), PR_EXPR); in append_ast_dict()
330 append_ast_set(_PyUnicodeWriter *writer, expr_ty e) in append_ast_set()
338 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Set.elts, i), PR_TEST); in append_ast_set()
345 append_ast_list(_PyUnicodeWriter *writer, expr_ty e) in append_ast_list()
353 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.List.elts, i), PR_TEST); in append_ast_list()
360 append_ast_tuple(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_tuple()
374 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Tuple.elts, i), PR_TEST); in append_ast_tuple()
395 APPEND_EXPR((expr_ty)asdl_seq_GET(gen->ifs, i), PR_TEST + 1); in append_ast_comprehension()
414 append_ast_genexp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_genexp()
423 append_ast_listcomp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_listcomp()
432 append_ast_setcomp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_setcomp()
441 append_ast_dictcomp(_PyUnicodeWriter *writer, expr_ty e) in append_ast_dictcomp()
452 append_ast_compare(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_compare()
508 APPEND_EXPR((expr_ty)asdl_seq_GET(comparators, i), PR_CMP + 1); in append_ast_compare()
534 append_ast_call(_PyUnicodeWriter *writer, expr_ty e) in append_ast_call()
538 expr_ty expr; in append_ast_call()
545 expr = (expr_ty)asdl_seq_GET(e->v.Call.args, 0); in append_ast_call()
557 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Call.args, i), PR_TEST); in append_ast_call()
596 append_fstring_element(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec) in append_fstring_element()
626 (expr_ty)asdl_seq_GET(values, i), in build_fstring_body()
638 append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec) in append_joinedstr()
661 append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e) in append_formattedvalue()
741 append_ast_attribute(_PyUnicodeWriter *writer, expr_ty e) in append_ast_attribute()
744 expr_ty v = e->v.Attribute.value; in append_ast_attribute()
761 append_ast_slice(_PyUnicodeWriter *writer, expr_ty e) in append_ast_slice()
781 append_ast_subscript(_PyUnicodeWriter *writer, expr_ty e) in append_ast_subscript()
785 expr_ty slice = e->v.Subscript.slice; in append_ast_subscript()
788 expr_ty element = asdl_seq_GET(slice->v.Tuple.elts, i); in append_ast_subscript()
801 append_ast_starred(_PyUnicodeWriter *writer, expr_ty e) in append_ast_starred()
809 append_ast_yield(_PyUnicodeWriter *writer, expr_ty e) in append_ast_yield()
821 append_ast_yield_from(_PyUnicodeWriter *writer, expr_ty e) in append_ast_yield_from()
829 append_ast_await(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_await()
839 append_named_expr(_PyUnicodeWriter *writer, expr_ty e, int level) in append_named_expr()
850 append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level) in append_ast_expr()
953 expr_as_unicode(expr_ty e, int level) in expr_as_unicode()
969 _PyAST_ExprAsUnicode(expr_ty e) in _PyAST_ExprAsUnicode()