Lines Matching refs:PySTEntryObject
46 static PySTEntryObject *
50 PySTEntryObject *ste = NULL; in ste_new()
56 ste = PyObject_New(PySTEntryObject, &PySTEntry_Type); in ste_new()
114 ste_repr(PySTEntryObject *ste) in ste_repr()
122 ste_dealloc(PySTEntryObject *ste) in ste_dealloc()
134 #define OFF(x) offsetof(PySTEntryObject, x)
151 sizeof(PySTEntryObject),
370 PySTEntryObject *
389 return (PySTEntryObject *)v; in PySymtable_Lookup()
393 _PyST_GetSymbol(PySTEntryObject *ste, PyObject *name) in _PyST_GetSymbol()
403 PyST_GetScope(PySTEntryObject *ste, PyObject *name) in PyST_GetScope()
410 error_at_directive(PySTEntryObject *ste, PyObject *name) in error_at_directive()
497 analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags, in analyze_name()
607 drop_class_free(PySTEntryObject *ste, PyObject *free) in drop_class_free()
733 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,
737 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()
971 PySTEntryObject *prev = NULL, *ste; in symtable_enter_block()