Home | History | Annotate | Download | only in Python

Lines Matching refs:compiling

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