Home
last modified time | relevance | path

Searched refs:st_cur (Results 1 – 2 of 2) 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()
210 st->st_cur = NULL; in symtable_new()
235 st->st_top = st->st_cur; in PySymtable_Build()
236 st->st_cur->ste_unoptimized = OPT_TOPLEVEL; in PySymtable_Build()
806 st->st_cur->ste_lineno); in symtable_warn()
823 Py_CLEAR(st->st_cur); in symtable_exit_block()
826 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, in symtable_exit_block()
828 if (st->st_cur == NULL) in symtable_exit_block()
[all …]
/external/python/cpython2/Include/
Dsymtable.h15 struct _symtable_entry *st_cur; /* current symbol table entry */ member