• Home
  • Raw
  • Download

Lines Matching refs:expr_ty

180 static int compiler_visit_expr(struct compiler *, expr_ty);
194 static int expr_constant(expr_ty);
208 expr_ty elt, expr_ty val, int type);
213 expr_ty elt, expr_ty val, int type);
1380 is_const(expr_ty e) in is_const()
1396 get_const_value(expr_ty e) in get_const_value()
1661 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1679 expr_ty default_ = asdl_seq_GET(kw_defaults, i); in compiler_visit_kwonlydefaults()
1727 compiler_visit_annexpr(struct compiler *c, expr_ty annotation) in compiler_visit_annexpr()
1740 expr_ty annotation, PyObject *names) in compiler_visit_argannotation()
1781 expr_ty returns) in compiler_visit_annotations()
1874 expr_ty returns; in compiler_function()
2123 compiler_jump_if(struct compiler *c, expr_ty e, basicblock *next, int cond) in compiler_jump_if()
2143 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, i), next2, cond2)) in compiler_jump_if()
2146 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, n), next, cond)) in compiler_jump_if()
2180 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); in compiler_jump_if()
2188 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_jump_if()
2219 compiler_ifexp(struct compiler *c, expr_ty e) in compiler_ifexp()
2241 compiler_lambda(struct compiler *c, expr_ty e) in compiler_lambda()
2951 compiler_visit_stmt_expr(struct compiler *c, expr_ty value) in compiler_visit_stmt_expr()
3007 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i)); in compiler_visit_stmt()
3285 compiler_boolop(struct compiler *c, expr_ty e) in compiler_boolop()
3304 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop()
3307 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n)); in compiler_boolop()
3319 expr_ty elt = asdl_seq_GET(elts, i); in starunpack_helper()
3353 expr_ty elt = asdl_seq_GET(elts, i); in assignment_helper()
3377 compiler_list(struct compiler *c, expr_ty e) in compiler_list()
3393 compiler_tuple(struct compiler *c, expr_ty e) in compiler_tuple()
3409 compiler_set(struct compiler *c, expr_ty e) in compiler_set()
3420 expr_ty key = (expr_ty)asdl_seq_GET(seq, i); in are_all_items_const()
3428 compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end) in compiler_subdict()
3434 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3441 key = get_const_value((expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); in compiler_subdict()
3450 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); in compiler_subdict()
3451 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3459 compiler_dict(struct compiler *c, expr_ty e) in compiler_dict()
3468 is_unpacking = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i) == NULL; in compiler_dict()
3476 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_dict()
3498 compiler_compare(struct compiler *c, expr_ty e) in compiler_compare()
3506 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, 0)); in compiler_compare()
3516 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); in compiler_compare()
3524 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_compare()
3540 maybe_optimize_method_call(struct compiler *c, expr_ty e) in maybe_optimize_method_call()
3543 expr_ty meth = e->v.Call.func; in maybe_optimize_method_call()
3555 expr_ty elt = asdl_seq_GET(args, i); in maybe_optimize_method_call()
3570 compiler_call(struct compiler *c, expr_ty e) in compiler_call()
3582 compiler_joined_str(struct compiler *c, expr_ty e) in compiler_joined_str()
3592 compiler_formatted_value(struct compiler *c, expr_ty e) in compiler_formatted_value()
3696 expr_ty elt = asdl_seq_GET(args, i); in compiler_call_helper()
3802 expr_ty elt, expr_ty val, int type) in compiler_comprehension_generator()
3818 expr_ty elt, expr_ty val, int type) in compiler_sync_comprehension_generator()
3856 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i); in compiler_sync_comprehension_generator()
3908 expr_ty elt, expr_ty val, int type) in compiler_async_comprehension_generator()
3974 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i); in compiler_async_comprehension_generator()
4028 compiler_comprehension(struct compiler *c, expr_ty e, int type, in compiler_comprehension()
4029 identifier name, asdl_seq *generators, expr_ty elt, in compiler_comprehension()
4030 expr_ty val) in compiler_comprehension()
4125 compiler_genexp(struct compiler *c, expr_ty e) in compiler_genexp()
4140 compiler_listcomp(struct compiler *c, expr_ty e) in compiler_listcomp()
4155 compiler_setcomp(struct compiler *c, expr_ty e) in compiler_setcomp()
4171 compiler_dictcomp(struct compiler *c, expr_ty e) in compiler_dictcomp()
4200 expr_constant(expr_ty e) in expr_constant()
4390 compiler_visit_expr(struct compiler *c, expr_ty e) in compiler_visit_expr()
4572 expr_ty e = s->v.AugAssign.target; in compiler_augassign()
4573 expr_ty auge; in compiler_augassign()
4616 check_ann_expr(struct compiler *c, expr_ty e) in check_ann_expr()
4702 expr_ty targ = s->v.AnnAssign.target; in compiler_annassign()