• Home
  • Raw
  • Download

Lines Matching refs:expr_ty

194 static int compiler_visit_expr(struct compiler *, expr_ty);
197 static int compiler_subscript(struct compiler *, expr_ty);
198 static int compiler_slice(struct compiler *, expr_ty);
202 static int expr_constant(expr_ty);
217 expr_ty elt, expr_ty val, int type);
223 expr_ty elt, expr_ty val, int type);
1956 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1974 expr_ty default_ = asdl_seq_GET(kw_defaults, i); in compiler_visit_kwonlydefaults()
2019 compiler_visit_annexpr(struct compiler *c, expr_ty annotation) in compiler_visit_annexpr()
2027 expr_ty annotation, PyObject *names) in compiler_visit_argannotation()
2068 expr_ty returns) in compiler_visit_annotations()
2209 expr_ty returns; in compiler_function()
2248 firstlineno = ((expr_ty)asdl_seq_GET(decos, 0))->lineno; in compiler_function()
2316 firstlineno = ((expr_ty)asdl_seq_GET(decos, 0))->lineno; in compiler_class()
2440 check_is_arg(expr_ty e) in check_is_arg()
2457 check_compare(struct compiler *c, expr_ty e) in check_compare()
2464 int right = check_is_arg((expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); in check_compare()
2522 compiler_jump_if(struct compiler *c, expr_ty e, basicblock *next, int cond) in compiler_jump_if()
2542 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, i), next2, cond2)) in compiler_jump_if()
2545 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, n), next, cond)) in compiler_jump_if()
2582 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); in compiler_jump_if()
2589 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_jump_if()
2619 compiler_ifexp(struct compiler *c, expr_ty e) in compiler_ifexp()
2641 compiler_lambda(struct compiler *c, expr_ty e) in compiler_lambda()
3359 compiler_visit_stmt_expr(struct compiler *c, expr_ty value) in compiler_visit_stmt_expr()
3402 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i)); in compiler_visit_stmt()
3647 compiler_boolop(struct compiler *c, expr_ty e) in compiler_boolop()
3666 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop()
3669 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n)); in compiler_boolop()
3687 val = ((expr_ty)asdl_seq_GET(elts, i))->v.Constant.value; in starunpack_helper()
3708 expr_ty elt = asdl_seq_GET(elts, i); in starunpack_helper()
3716 expr_ty elt = asdl_seq_GET(elts, i); in starunpack_helper()
3739 expr_ty elt = asdl_seq_GET(elts, i); in starunpack_helper()
3758 expr_ty elt = asdl_seq_GET(elts, i); in assignment_helper()
3777 expr_ty elt = asdl_seq_GET(elts, i); in assignment_helper()
3784 compiler_list(struct compiler *c, expr_ty e) in compiler_list()
3800 compiler_tuple(struct compiler *c, expr_ty e) in compiler_tuple()
3816 compiler_set(struct compiler *c, expr_ty e) in compiler_set()
3827 expr_ty key = (expr_ty)asdl_seq_GET(seq, i); in are_all_items_const()
3835 compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end) in compiler_subdict()
3841 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3848 key = ((expr_ty)asdl_seq_GET(e->v.Dict.keys, i))->v.Constant.value; in compiler_subdict()
3857 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); in compiler_subdict()
3858 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3866 compiler_dict(struct compiler *c, expr_ty e) in compiler_dict()
3875 is_unpacking = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i) == NULL; in compiler_dict()
3891 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_dict()
3926 compiler_compare(struct compiler *c, expr_ty e) in compiler_compare()
3937 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, 0)); in compiler_compare()
3946 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); in compiler_compare()
3953 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_compare()
3968 infer_type(expr_ty e) in infer_type()
3997 check_caller(struct compiler *c, expr_ty e) in check_caller()
4020 check_subscripter(struct compiler *c, expr_ty e) in check_subscripter()
4047 check_index(struct compiler *c, expr_ty e, expr_ty s) in check_index()
4082 maybe_optimize_method_call(struct compiler *c, expr_ty e) in maybe_optimize_method_call()
4085 expr_ty meth = e->v.Call.func; in maybe_optimize_method_call()
4097 expr_ty elt = asdl_seq_GET(args, i); in maybe_optimize_method_call()
4141 compiler_call(struct compiler *c, expr_ty e) in compiler_call()
4157 compiler_joined_str(struct compiler *c, expr_ty e) in compiler_joined_str()
4167 compiler_formatted_value(struct compiler *c, expr_ty e) in compiler_formatted_value()
4264 expr_ty elt = asdl_seq_GET(args, i); in compiler_call_helper()
4278 expr_ty elt = asdl_seq_GET(args, i); in compiler_call_helper()
4306 if (n ==0 && nelts == 1 && ((expr_ty)asdl_seq_GET(args, 0))->kind == Starred_kind) { in compiler_call_helper()
4307 VISIT(c, expr, ((expr_ty)asdl_seq_GET(args, 0))->v.Starred.value); in compiler_call_helper()
4379 expr_ty elt, expr_ty val, int type) in compiler_comprehension_generator()
4396 expr_ty elt, expr_ty val, int type) in compiler_sync_comprehension_generator()
4438 expr_ty elt = asdl_seq_GET(elts, 0); in compiler_sync_comprehension_generator()
4460 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i); in compiler_sync_comprehension_generator()
4515 expr_ty elt, expr_ty val, int type) in compiler_async_comprehension_generator()
4552 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i); in compiler_async_comprehension_generator()
4603 compiler_comprehension(struct compiler *c, expr_ty e, int type, in compiler_comprehension()
4604 identifier name, asdl_seq *generators, expr_ty elt, in compiler_comprehension()
4605 expr_ty val) in compiler_comprehension()
4701 compiler_genexp(struct compiler *c, expr_ty e) in compiler_genexp()
4716 compiler_listcomp(struct compiler *c, expr_ty e) in compiler_listcomp()
4731 compiler_setcomp(struct compiler *c, expr_ty e) in compiler_setcomp()
4747 compiler_dictcomp(struct compiler *c, expr_ty e) in compiler_dictcomp()
4776 expr_constant(expr_ty e) in expr_constant()
4991 compiler_visit_expr1(struct compiler *c, expr_ty e) in compiler_visit_expr1()
5122 compiler_visit_expr(struct compiler *c, expr_ty e) in compiler_visit_expr()
5137 expr_ty e = s->v.AugAssign.target; in compiler_augassign()
5192 check_ann_expr(struct compiler *c, expr_ty e) in check_ann_expr()
5211 check_ann_subscr(struct compiler *c, expr_ty e) in check_ann_subscr()
5245 expr_ty targ = s->v.AnnAssign.target; in compiler_annassign()
5369 compiler_subscript(struct compiler *c, expr_ty e) in compiler_subscript()
5396 compiler_slice(struct compiler *c, expr_ty s) in compiler_slice()