Lines Matching refs:compiling

559 struct compiling {  struct
566 static asdl_seq *seq_for_testlist(struct compiling *, const node *); argument
567 static expr_ty ast_for_expr(struct compiling *, const node *);
568 static stmt_ty ast_for_stmt(struct compiling *, const node *);
569 static asdl_seq *ast_for_suite(struct compiling *c, const node *n);
570 static asdl_seq *ast_for_exprlist(struct compiling *, const node *,
572 static expr_ty ast_for_testlist(struct compiling *, const node *);
573 static stmt_ty ast_for_classdef(struct compiling *, const node *, asdl_seq *);
575 static stmt_ty ast_for_with_stmt(struct compiling *, const node *, bool);
576 static stmt_ty ast_for_for_stmt(struct compiling *, const node *, bool);
579 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty,
582 static PyObject *parsenumber(struct compiling *, const char *);
583 static expr_ty parsestrplus(struct compiling *, const node *n);
591 init_normalization(struct compiling *c) in init_normalization()
604 new_identifier(const char *n, struct compiling *c) in new_identifier()
651 ast_error(struct compiling *c, const node *n, const char *errmsg, ...) in ast_error()
697 new_type_comment(const char *s, struct compiling *c) in new_type_comment()
771 struct compiling c; in PyAST_FromNodeObject()
957 get_operator(struct compiling *c, const node *n) in get_operator()
1003 forbidden_name(struct compiling *c, identifier name, const node *n, in forbidden_name()
1116 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
1177 ast_for_augassign(struct compiling *c, const node *n) in ast_for_augassign()
1222 ast_for_comp_op(struct compiling *c, const node *n) in ast_for_comp_op()
1276 seq_for_testlist(struct compiling *c, const node *n) in seq_for_testlist()
1305 ast_for_arg(struct compiling *c, const node *n) in ast_for_arg()
1340 handle_keywordonly_args(struct compiling *c, const node *n, int start, in handle_keywordonly_args()
1417 ast_for_arguments(struct compiling *c, const node *n) in ast_for_arguments()
1680 ast_for_decorator(struct compiling *c, const node *n) in ast_for_decorator()
1692 ast_for_decorators(struct compiling *c, const node *n) in ast_for_decorators()
1713 ast_for_funcdef_impl(struct compiling *c, const node *n0, in ast_for_funcdef_impl()
1784 ast_for_async_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_async_funcdef()
1796 ast_for_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_funcdef()
1805 ast_for_async_stmt(struct compiling *c, const node *n) in ast_for_async_stmt()
1832 ast_for_decorated(struct compiling *c, const node *n) in ast_for_decorated()
1859 ast_for_namedexpr(struct compiling *c, const node *n) in ast_for_namedexpr()
1894 ast_for_lambdef(struct compiling *c, const node *n) in ast_for_lambdef()
1923 ast_for_ifexpr(struct compiling *c, const node *n) in ast_for_ifexpr()
1950 count_comp_fors(struct compiling *c, const node *n) in count_comp_fors()
2000 count_comp_ifs(struct compiling *c, const node *n) in count_comp_ifs()
2018 ast_for_comprehension(struct compiling *c, const node *n) in ast_for_comprehension()
2116 ast_for_itercomp(struct compiling *c, const node *n, int type) in ast_for_itercomp()
2158 ast_for_dictelement(struct compiling *c, const node *n, int *i, in ast_for_dictelement()
2194 ast_for_dictcomp(struct compiling *c, const node *n) in ast_for_dictcomp()
2214 ast_for_dictdisplay(struct compiling *c, const node *n) in ast_for_dictdisplay()
2248 ast_for_genexp(struct compiling *c, const node *n) in ast_for_genexp()
2255 ast_for_listcomp(struct compiling *c, const node *n) in ast_for_listcomp()
2262 ast_for_setcomp(struct compiling *c, const node *n) in ast_for_setcomp()
2269 ast_for_setdisplay(struct compiling *c, const node *n) in ast_for_setdisplay()
2292 ast_for_atom(struct compiling *c, const node *n) in ast_for_atom()
2463 ast_for_slice(struct compiling *c, const node *n) in ast_for_slice()
2523 ast_for_binop(struct compiling *c, const node *n) in ast_for_binop()
2578 ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr, const node *start) in ast_for_trailer()
2641 ast_for_factor(struct compiling *c, const node *n) in ast_for_factor()
2669 ast_for_atom_expr(struct compiling *c, const node *n) in ast_for_atom_expr()
2717 ast_for_power(struct compiling *c, const node *n) in ast_for_power()
2739 ast_for_starred(struct compiling *c, const node *n) in ast_for_starred()
2758 ast_for_expr(struct compiling *c, const node *n) in ast_for_expr()
2932 ast_for_call(struct compiling *c, const node *n, expr_ty func, in ast_for_call()
3136 ast_for_testlist(struct compiling *c, const node* n) in ast_for_testlist()
3161 ast_for_expr_stmt(struct compiling *c, const node *n) in ast_for_expr_stmt()
3362 ast_for_exprlist(struct compiling *c, const node *n, expr_context_ty context) in ast_for_exprlist()
3385 ast_for_del_stmt(struct compiling *c, const node *n) in ast_for_del_stmt()
3400 ast_for_flow_stmt(struct compiling *c, const node *n) in ast_for_flow_stmt()
3467 alias_for_import_name(struct compiling *c, const node *n, int store) in alias_for_import_name()
3583 ast_for_import_stmt(struct compiling *c, const node *n) in ast_for_import_stmt()
3701 ast_for_global_stmt(struct compiling *c, const node *n) in ast_for_global_stmt()
3723 ast_for_nonlocal_stmt(struct compiling *c, const node *n) in ast_for_nonlocal_stmt()
3745 ast_for_assert_stmt(struct compiling *c, const node *n) in ast_for_assert_stmt()
3776 ast_for_suite(struct compiling *c, const node *n) in ast_for_suite()
3861 ast_for_if_stmt(struct compiling *c, const node *n) in ast_for_if_stmt()
3993 ast_for_while_stmt(struct compiling *c, const node *n) in ast_for_while_stmt()
4039 ast_for_for_stmt(struct compiling *c, const node *n0, bool is_async) in ast_for_for_stmt()
4113 ast_for_except_clause(struct compiling *c, const node *exc, node *body) in ast_for_except_clause()
4174 ast_for_try_stmt(struct compiling *c, const node *n) in ast_for_try_stmt()
4253 ast_for_with_item(struct compiling *c, const node *n) in ast_for_with_item()
4277 ast_for_with_stmt(struct compiling *c, const node *n0, bool is_async) in ast_for_with_stmt()
4328 ast_for_classdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_classdef()
4403 ast_for_stmt(struct compiling *c, const node *n) in ast_for_stmt()
4478 parsenumber_raw(struct compiling *c, const char *s) in parsenumber_raw()
4521 parsenumber(struct compiling *c, const char *s) in parsenumber()
4549 decode_utf8(struct compiling *c, const char **sPtr, const char *end) in decode_utf8()
4560 warn_invalid_escape_sequence(struct compiling *c, const node *n, in warn_invalid_escape_sequence()
4586 decode_unicode_with_escapes(struct compiling *c, const node *n, const char *s, in decode_unicode_with_escapes()
4659 decode_bytes_with_escapes(struct compiling *c, const node *n, const char *s, in decode_bytes_with_escapes()
4736 struct compiling *c, const node *n) in fstring_compile_expr()
4811 struct compiling *c, const node *n) in fstring_find_literal()
4888 struct compiling *c, const node *n);
4908 struct compiling *c, const node *n) in fstring_find_expr()
5212 struct compiling *c, const node *n) in fstring_find_literal_and_expr()
5415 make_kind(struct compiling *c, const node *n) in make_kind()
5447 make_str_node_and_del(PyObject **str, struct compiling *c, const node* n) in make_str_node_and_del()
5496 struct compiling *c, const node *n) in FstringParser_ConcatFstring()
5575 FstringParser_Finish(FstringParser *state, struct compiling *c, in FstringParser_Finish()
5622 struct compiling *c, const node *n) in fstring_parse()
5644 parsestr(struct compiling *c, const node *n, int *bytesmode, int *rawmode, in parsestr()
5762 parsestrplus(struct compiling *c, const node *n) in parsestrplus()