Lines Matching full:compiling
587 struct compiling { struct
594 static asdl_seq *seq_for_testlist(struct compiling *, const node *); argument
595 static expr_ty ast_for_expr(struct compiling *, const node *);
596 static stmt_ty ast_for_stmt(struct compiling *, const node *);
597 static asdl_seq *ast_for_suite(struct compiling *c, const node *n);
598 static asdl_seq *ast_for_exprlist(struct compiling *, const node *,
600 static expr_ty ast_for_testlist(struct compiling *, const node *);
601 static stmt_ty ast_for_classdef(struct compiling *, const node *, asdl_seq *);
603 static stmt_ty ast_for_with_stmt(struct compiling *, const node *, bool);
604 static stmt_ty ast_for_for_stmt(struct compiling *, const node *, bool);
607 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty,
610 static PyObject *parsenumber(struct compiling *, const char *);
611 static expr_ty parsestrplus(struct compiling *, const node *n);
619 init_normalization(struct compiling *c) in init_normalization()
632 new_identifier(const char *n, struct compiling *c) in new_identifier()
679 ast_error(struct compiling *c, const node *n, const char *errmsg, ...) in ast_error()
725 new_type_comment(const char *s, struct compiling *c) in new_type_comment()
802 struct compiling c; in PyAST_FromNodeObject()
988 get_operator(struct compiling *c, const node *n) in get_operator()
1034 forbidden_name(struct compiling *c, identifier name, const node *n, in forbidden_name()
1147 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
1215 ast_for_augassign(struct compiling *c, const node *n) in ast_for_augassign()
1260 ast_for_comp_op(struct compiling *c, const node *n) in ast_for_comp_op()
1314 seq_for_testlist(struct compiling *c, const node *n) in seq_for_testlist()
1343 ast_for_arg(struct compiling *c, const node *n) in ast_for_arg()
1378 handle_keywordonly_args(struct compiling *c, const node *n, int start, in handle_keywordonly_args()
1455 ast_for_arguments(struct compiling *c, const node *n) in ast_for_arguments()
1718 ast_for_dotted_name(struct compiling *c, const node *n) in ast_for_dotted_name()
1755 ast_for_decorator(struct compiling *c, const node *n) in ast_for_decorator()
1794 ast_for_decorators(struct compiling *c, const node *n) in ast_for_decorators()
1815 ast_for_funcdef_impl(struct compiling *c, const node *n0, in ast_for_funcdef_impl()
1886 ast_for_async_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_async_funcdef()
1898 ast_for_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_funcdef()
1907 ast_for_async_stmt(struct compiling *c, const node *n) in ast_for_async_stmt()
1934 ast_for_decorated(struct compiling *c, const node *n) in ast_for_decorated()
1961 ast_for_namedexpr(struct compiling *c, const node *n) in ast_for_namedexpr()
1996 ast_for_lambdef(struct compiling *c, const node *n) in ast_for_lambdef()
2025 ast_for_ifexpr(struct compiling *c, const node *n) in ast_for_ifexpr()
2052 count_comp_fors(struct compiling *c, const node *n) in count_comp_fors()
2102 count_comp_ifs(struct compiling *c, const node *n) in count_comp_ifs()
2120 ast_for_comprehension(struct compiling *c, const node *n) in ast_for_comprehension()
2218 ast_for_itercomp(struct compiling *c, const node *n, int type) in ast_for_itercomp()
2260 ast_for_dictelement(struct compiling *c, const node *n, int *i, in ast_for_dictelement()
2296 ast_for_dictcomp(struct compiling *c, const node *n) in ast_for_dictcomp()
2316 ast_for_dictdisplay(struct compiling *c, const node *n) in ast_for_dictdisplay()
2350 ast_for_genexp(struct compiling *c, const node *n) in ast_for_genexp()
2357 ast_for_listcomp(struct compiling *c, const node *n) in ast_for_listcomp()
2364 ast_for_setcomp(struct compiling *c, const node *n) in ast_for_setcomp()
2371 ast_for_setdisplay(struct compiling *c, const node *n) in ast_for_setdisplay()
2394 ast_for_atom(struct compiling *c, const node *n) in ast_for_atom()
2582 ast_for_slice(struct compiling *c, const node *n) in ast_for_slice()
2647 ast_for_binop(struct compiling *c, const node *n) in ast_for_binop()
2702 ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr, const node *start) in ast_for_trailer()
2785 ast_for_factor(struct compiling *c, const node *n) in ast_for_factor()
2813 ast_for_atom_expr(struct compiling *c, const node *n) in ast_for_atom_expr()
2861 ast_for_power(struct compiling *c, const node *n) in ast_for_power()
2883 ast_for_starred(struct compiling *c, const node *n) in ast_for_starred()
2902 ast_for_expr(struct compiling *c, const node *n) in ast_for_expr()
3076 ast_for_call(struct compiling *c, const node *n, expr_ty func, in ast_for_call()
3286 ast_for_testlist(struct compiling *c, const node* n) in ast_for_testlist()
3311 ast_for_expr_stmt(struct compiling *c, const node *n) in ast_for_expr_stmt()
3509 ast_for_exprlist(struct compiling *c, const node *n, expr_context_ty context) in ast_for_exprlist()
3532 ast_for_del_stmt(struct compiling *c, const node *n) in ast_for_del_stmt()
3547 ast_for_flow_stmt(struct compiling *c, const node *n) in ast_for_flow_stmt()
3614 alias_for_import_name(struct compiling *c, const node *n, int store) in alias_for_import_name()
3733 ast_for_import_stmt(struct compiling *c, const node *n) in ast_for_import_stmt()
3851 ast_for_global_stmt(struct compiling *c, const node *n) in ast_for_global_stmt()
3873 ast_for_nonlocal_stmt(struct compiling *c, const node *n) in ast_for_nonlocal_stmt()
3895 ast_for_assert_stmt(struct compiling *c, const node *n) in ast_for_assert_stmt()
3926 ast_for_suite(struct compiling *c, const node *n) in ast_for_suite()
4011 ast_for_if_stmt(struct compiling *c, const node *n) in ast_for_if_stmt()
4143 ast_for_while_stmt(struct compiling *c, const node *n) in ast_for_while_stmt()
4189 ast_for_for_stmt(struct compiling *c, const node *n0, bool is_async) in ast_for_for_stmt()
4263 ast_for_except_clause(struct compiling *c, const node *exc, node *body) in ast_for_except_clause()
4324 ast_for_try_stmt(struct compiling *c, const node *n) in ast_for_try_stmt()
4403 ast_for_with_item(struct compiling *c, const node *n) in ast_for_with_item()
4427 ast_for_with_stmt(struct compiling *c, const node *n0, bool is_async) in ast_for_with_stmt()
4478 ast_for_classdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_classdef()
4553 ast_for_stmt(struct compiling *c, const node *n) in ast_for_stmt()
4628 parsenumber_raw(struct compiling *c, const char *s) in parsenumber_raw()
4671 parsenumber(struct compiling *c, const char *s) in parsenumber()
4699 decode_utf8(struct compiling *c, const char **sPtr, const char *end) in decode_utf8()
4710 warn_invalid_escape_sequence(struct compiling *c, const node *n, in warn_invalid_escape_sequence()
4736 decode_unicode_with_escapes(struct compiling *c, const node *n, const char *s, in decode_unicode_with_escapes()
4809 decode_bytes_with_escapes(struct compiling *c, const node *n, const char *s, in decode_bytes_with_escapes()
4886 struct compiling *c, const node *n) in fstring_compile_expr()
4961 struct compiling *c, const node *n) in fstring_find_literal()
5038 struct compiling *c, const node *n);
5058 struct compiling *c, const node *n) in fstring_find_expr()
5219 don't care. We'll get a syntax error when compiling the in fstring_find_expr()
5362 struct compiling *c, const node *n) in fstring_find_literal_and_expr()
5565 make_kind(struct compiling *c, const node *n) in make_kind()
5597 make_str_node_and_del(PyObject **str, struct compiling *c, const node* n) in make_str_node_and_del()
5646 struct compiling *c, const node *n) in FstringParser_ConcatFstring()
5725 FstringParser_Finish(FstringParser *state, struct compiling *c, in FstringParser_Finish()
5772 struct compiling *c, const node *n) in fstring_parse()
5794 parsestr(struct compiling *c, const node *n, int *bytesmode, int *rawmode, in parsestr()
5912 parsestrplus(struct compiling *c, const node *n) in parsestrplus()