• Home
  • Raw
  • Download

Lines Matching refs:symtable

47 ste_new(struct symtable *st, identifier name, _Py_block_ty block,  in ste_new()
189 static int symtable_analyze(struct symtable *st);
190 static int symtable_enter_block(struct symtable *st, identifier name,
193 static int symtable_exit_block(struct symtable *st);
194 static int symtable_visit_stmt(struct symtable *st, stmt_ty s);
195 static int symtable_visit_expr(struct symtable *st, expr_ty s);
196 static int symtable_visit_genexp(struct symtable *st, expr_ty s);
197 static int symtable_visit_listcomp(struct symtable *st, expr_ty s);
198 static int symtable_visit_setcomp(struct symtable *st, expr_ty s);
199 static int symtable_visit_dictcomp(struct symtable *st, expr_ty s);
200 static int symtable_visit_arguments(struct symtable *st, arguments_ty);
201 static int symtable_visit_excepthandler(struct symtable *st, excepthandler_ty);
202 static int symtable_visit_alias(struct symtable *st, alias_ty);
203 static int symtable_visit_comprehension(struct symtable *st, comprehension_ty);
204 static int symtable_visit_keyword(struct symtable *st, keyword_ty);
205 static int symtable_visit_params(struct symtable *st, asdl_seq *args);
206 static int symtable_visit_argannotations(struct symtable *st, asdl_seq *args);
207 static int symtable_implicit_arg(struct symtable *st, int pos);
208 static int symtable_visit_annotations(struct symtable *st, arguments_ty, expr_ty);
209 static int symtable_visit_withitem(struct symtable *st, withitem_ty item);
222 static struct symtable *
225 struct symtable *st; in symtable_new()
227 st = (struct symtable *)PyMem_Malloc(sizeof(struct symtable)); in symtable_new()
260 struct symtable *
263 struct symtable *st = symtable_new(); in PySymtable_BuildObject()
348 struct symtable *
352 struct symtable *st; in PySymtable_Build()
362 PySymtable_Free(struct symtable *st) in PySymtable_Free()
371 PySymtable_Lookup(struct symtable *st, void *key) in PySymtable_Lookup()
927 symtable_analyze(struct symtable *st) in symtable_analyze()
952 symtable_exit_block(struct symtable *st) in symtable_exit_block()
968 symtable_enter_block(struct symtable *st, identifier name, _Py_block_ty block, in symtable_enter_block()
1002 symtable_lookup(struct symtable *st, PyObject *name) in symtable_lookup()
1013 symtable_add_def_helper(struct symtable *st, PyObject *name, int flag, struct _symtable_entry *ste) in symtable_add_def_helper()
1095 symtable_add_def(struct symtable *st, PyObject *name, int flag) { in symtable_add_def()
1149 symtable_record_directive(struct symtable *st, identifier name, int lineno, int col_offset) in symtable_record_directive()
1171 symtable_visit_stmt(struct symtable *st, stmt_ty s) in symtable_visit_stmt()
1435 symtable_extend_namedexpr_scope(struct symtable *st, expr_ty e) in symtable_extend_namedexpr_scope()
1507 symtable_handle_namedexpr(struct symtable *st, expr_ty e) in symtable_handle_namedexpr()
1528 symtable_visit_expr(struct symtable *st, expr_ty e) in symtable_visit_expr()
1672 symtable_implicit_arg(struct symtable *st, int pos) in symtable_implicit_arg()
1686 symtable_visit_params(struct symtable *st, asdl_seq *args) in symtable_visit_params()
1703 symtable_visit_argannotations(struct symtable *st, asdl_seq *args) in symtable_visit_argannotations()
1720 symtable_visit_annotations(struct symtable *st, arguments_ty a, expr_ty returns) in symtable_visit_annotations()
1738 symtable_visit_arguments(struct symtable *st, arguments_ty a) in symtable_visit_arguments()
1764 symtable_visit_excepthandler(struct symtable *st, excepthandler_ty eh) in symtable_visit_excepthandler()
1776 symtable_visit_withitem(struct symtable *st, withitem_ty item) in symtable_visit_withitem()
1787 symtable_visit_alias(struct symtable *st, alias_ty a) in symtable_visit_alias()
1827 symtable_visit_comprehension(struct symtable *st, comprehension_ty lc) in symtable_visit_comprehension()
1844 symtable_visit_keyword(struct symtable *st, keyword_ty k) in symtable_visit_keyword()
1852 symtable_handle_comprehension(struct symtable *st, expr_ty e, in symtable_handle_comprehension()
1906 symtable_visit_genexp(struct symtable *st, expr_ty e) in symtable_visit_genexp()
1914 symtable_visit_listcomp(struct symtable *st, expr_ty e) in symtable_visit_listcomp()
1922 symtable_visit_setcomp(struct symtable *st, expr_ty e) in symtable_visit_setcomp()
1930 symtable_visit_dictcomp(struct symtable *st, expr_ty e) in symtable_visit_dictcomp()