Home
last modified time | relevance | path

Searched refs:st_cur (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Python/
Dsymtable.c67 if (st->st_cur != NULL && in ste_new()
68 (st->st_cur->ste_nested || in ste_new()
69 st->st_cur->ste_type == FunctionBlock)) in ste_new()
212 st->st_cur = NULL; in symtable_new()
237 st->st_top = st->st_cur; in PySymtable_Build()
238 st->st_cur->ste_unoptimized = OPT_TOPLEVEL; in PySymtable_Build()
804 lineno = st->st_cur->ste_lineno; in symtable_warn()
829 Py_CLEAR(st->st_cur); in symtable_exit_block()
832 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, in symtable_exit_block()
834 if (st->st_cur == NULL) in symtable_exit_block()
[all …]
/external/python/cpython3/Python/
Dsymtable.c83 if (st->st_cur != NULL && in ste_new()
84 (st->st_cur->ste_nested || in ste_new()
85 st->st_cur->ste_type == FunctionBlock)) in ste_new()
240 st->st_cur = NULL; in symtable_new()
300 st->st_top = st->st_cur; in PySymtable_BuildObject()
956 st->st_cur = NULL; in symtable_exit_block()
962 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, size - 1); in symtable_exit_block()
980 prev = st->st_cur; in symtable_enter_block()
990 st->st_cur = ste; in symtable_enter_block()
992 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block()
[all …]
/external/python/cpython2/Include/
Dsymtable.h15 struct _symtable_entry *st_cur; /* current symbol table entry */ member
/external/python/cpython3/Include/
Dsymtable.h22 struct _symtable_entry *st_cur; /* current symbol table entry */ member