Lines Matching refs:compiling
19 struct compiling { struct
26 static asdl_seq *seq_for_testlist(struct compiling *, const node *); argument
27 static expr_ty ast_for_expr(struct compiling *, const node *);
28 static stmt_ty ast_for_stmt(struct compiling *, const node *);
29 static asdl_seq *ast_for_suite(struct compiling *, const node *);
30 static asdl_seq *ast_for_exprlist(struct compiling *, const node *,
32 static expr_ty ast_for_testlist(struct compiling *, const node *);
33 static stmt_ty ast_for_classdef(struct compiling *, const node *, asdl_seq *);
34 static expr_ty ast_for_testlist_comp(struct compiling *, const node *);
37 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty);
39 static PyObject *parsenumber(struct compiling *, const char *);
40 static PyObject *parsestr(struct compiling *, const node *n, const char *);
41 static PyObject *parsestrplus(struct compiling *, const node *n);
121 ast_warn(struct compiling *c, const node *n, char *msg) in ast_warn()
134 forbidden_check(struct compiling *c, const node *n, const char *x) in forbidden_check()
223 struct compiling c; in PyAST_FromNode()
370 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
488 ast_for_augassign(struct compiling *c, const node *n) in ast_for_augassign()
526 ast_for_comp_op(struct compiling *c, const node *n) in ast_for_comp_op()
578 seq_for_testlist(struct compiling *c, const node *n) in seq_for_testlist()
608 compiler_complex_args(struct compiling *c, const node *n) in compiler_complex_args()
663 ast_for_arguments(struct compiling *c, const node *n) in ast_for_arguments()
804 ast_for_dotted_name(struct compiling *c, const node *n) in ast_for_dotted_name()
836 ast_for_decorator(struct compiling *c, const node *n) in ast_for_decorator()
872 ast_for_decorators(struct compiling *c, const node *n) in ast_for_decorators()
893 ast_for_funcdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_funcdef()
920 ast_for_decorated(struct compiling *c, const node *n) in ast_for_decorated()
950 ast_for_lambdef(struct compiling *c, const node *n) in ast_for_lambdef()
977 ast_for_ifexpr(struct compiling *c, const node *n) in ast_for_ifexpr()
1007 count_list_fors(struct compiling *c, const node *n) in count_list_fors()
1044 count_list_ifs(struct compiling *c, const node *n) in count_list_ifs()
1062 ast_for_listcomp(struct compiling *c, const node *n) in ast_for_listcomp()
1165 count_comp_fors(struct compiling *c, const node *n) in count_comp_fors()
1202 count_comp_ifs(struct compiling *c, const node *n) in count_comp_ifs()
1220 ast_for_comprehension(struct compiling *c, const node *n) in ast_for_comprehension()
1297 ast_for_itercomp(struct compiling *c, const node *n, int type) in ast_for_itercomp()
1322 ast_for_dictcomp(struct compiling *c, const node *n) in ast_for_dictcomp()
1346 ast_for_genexp(struct compiling *c, const node *n) in ast_for_genexp()
1353 ast_for_setcomp(struct compiling *c, const node *n) in ast_for_setcomp()
1360 ast_for_atom(struct compiling *c, const node *n) in ast_for_atom()
1517 ast_for_slice(struct compiling *c, const node *n) in ast_for_slice()
1599 ast_for_binop(struct compiling *c, const node *n) in ast_for_binop()
1651 ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr) in ast_for_trailer()
1727 ast_for_factor(struct compiling *c, const node *n) in ast_for_factor()
1783 ast_for_power(struct compiling *c, const node *n) in ast_for_power()
1822 ast_for_expr(struct compiling *c, const node *n) in ast_for_expr()
1978 ast_for_call(struct compiling *c, const node *n, expr_ty func) in ast_for_call()
2114 ast_for_testlist(struct compiling *c, const node* n) in ast_for_testlist()
2141 ast_for_testlist_comp(struct compiling *c, const node* n) in ast_for_testlist_comp()
2153 ast_for_class_bases(struct compiling *c, const node* n) in ast_for_class_bases()
2174 ast_for_expr_stmt(struct compiling *c, const node *n) in ast_for_expr_stmt()
2272 ast_for_print_stmt(struct compiling *c, const node *n) in ast_for_print_stmt()
2306 ast_for_exprlist(struct compiling *c, const node *n, expr_context_ty context) in ast_for_exprlist()
2329 ast_for_del_stmt(struct compiling *c, const node *n) in ast_for_del_stmt()
2343 ast_for_flow_stmt(struct compiling *c, const node *n) in ast_for_flow_stmt()
2431 alias_for_import_name(struct compiling *c, const node *n, int store) in alias_for_import_name()
2538 ast_for_import_stmt(struct compiling *c, const node *n) in ast_for_import_stmt()
2647 ast_for_global_stmt(struct compiling *c, const node *n) in ast_for_global_stmt()
2668 ast_for_exec_stmt(struct compiling *c, const node *n) in ast_for_exec_stmt()
2712 ast_for_assert_stmt(struct compiling *c, const node *n) in ast_for_assert_stmt()
2742 ast_for_suite(struct compiling *c, const node *n) in ast_for_suite()
2808 ast_for_if_stmt(struct compiling *c, const node *n) in ast_for_if_stmt()
2928 ast_for_while_stmt(struct compiling *c, const node *n) in ast_for_while_stmt()
2971 ast_for_for_stmt(struct compiling *c, const node *n) in ast_for_for_stmt()
3010 ast_for_except_clause(struct compiling *c, const node *exc, node *body) in ast_for_except_clause()
3064 ast_for_try_stmt(struct compiling *c, const node *n) in ast_for_try_stmt()
3143 ast_for_with_item(struct compiling *c, const node *n, asdl_seq *content) in ast_for_with_item()
3168 ast_for_with_stmt(struct compiling *c, const node *n) in ast_for_with_stmt()
3202 ast_for_classdef(struct compiling *c, const node *n, asdl_seq *decorator_seq) in ast_for_classdef()
3251 ast_for_stmt(struct compiling *c, const node *n) in ast_for_stmt()
3326 parsenumber(struct compiling *c, const char *s) in parsenumber()
3370 decode_utf8(struct compiling *c, const char **sPtr, const char *end, char* encoding) in decode_utf8()
3393 decode_unicode(struct compiling *c, const char *s, size_t len, int rawmode, const char *encoding) in decode_unicode()
3461 parsestr(struct compiling *c, const node *n, const char *s) in parsestr()
3555 parsestrplus(struct compiling *c, const node *n) in parsestrplus()