Lines Matching refs:PySTEntryObject
58 static PySTEntryObject *
63 PySTEntryObject *ste = NULL; in ste_new()
69 ste = PyObject_New(PySTEntryObject, &PySTEntry_Type); in ste_new()
129 ste_repr(PySTEntryObject *ste) in ste_repr()
137 ste_dealloc(PySTEntryObject *ste) in ste_dealloc()
149 #define OFF(x) offsetof(PySTEntryObject, x)
166 sizeof(PySTEntryObject),
372 PySTEntryObject *
391 return (PySTEntryObject *)v; in PySymtable_Lookup()
395 _PyST_GetSymbol(PySTEntryObject *ste, PyObject *name) in _PyST_GetSymbol()
405 _PyST_GetScope(PySTEntryObject *ste, PyObject *name) in _PyST_GetScope()
412 error_at_directive(PySTEntryObject *ste, PyObject *name) in error_at_directive()
501 analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags, in analyze_name()
611 drop_class_free(PySTEntryObject *ste, PyObject *free) in drop_class_free()
735 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,
739 analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free, in analyze_block()
842 PySTEntryObject* entry; in analyze_block()
844 entry = (PySTEntryObject*)c; in analyze_block()
886 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, in analyze_child_block()
962 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, size - 1); in symtable_exit_block()
972 PySTEntryObject *prev = NULL, *ste; in symtable_enter_block()