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),
379 PySTEntryObject *
398 return (PySTEntryObject *)v; in PySymtable_Lookup()
402 _PyST_GetSymbol(PySTEntryObject *ste, PyObject *name) in _PyST_GetSymbol()
412 _PyST_GetScope(PySTEntryObject *ste, PyObject *name) in _PyST_GetScope()
419 error_at_directive(PySTEntryObject *ste, PyObject *name) in error_at_directive()
508 analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags, in analyze_name()
618 drop_class_free(PySTEntryObject *ste, PyObject *free) in drop_class_free()
744 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,
748 analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free, in analyze_block()
853 PySTEntryObject* entry; in analyze_block()
855 entry = (PySTEntryObject*)c; in analyze_block()
897 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, in analyze_child_block()
973 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, size - 1); in symtable_exit_block()
983 PySTEntryObject *prev = NULL, *ste; in symtable_enter_block()