Home
last modified time | relevance | path

Searched refs:PyWeakref_GET_OBJECT (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Objects/
Dweakrefobject.c136 PyObject *object = PyWeakref_GET_OBJECT(self); in weakref_call()
149 PyObject* obj = PyWeakref_GET_OBJECT(self); in weakref_hash()
166 PyObject* obj = PyWeakref_GET_OBJECT(self); in weakref_repr()
181 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, in weakref_repr()
188 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, in weakref_repr()
209 if (PyWeakref_GET_OBJECT(self) == Py_None in weakref_richcompare()
210 || PyWeakref_GET_OBJECT(other) == Py_None) { in weakref_richcompare()
219 PyObject* obj = PyWeakref_GET_OBJECT(self); in weakref_richcompare()
220 PyObject* other_obj = PyWeakref_GET_OBJECT(other); in weakref_richcompare()
419 if (PyWeakref_GET_OBJECT(proxy) == Py_None) { in proxy_checkref()
[all …]
Dtypeobject.c345 ref = PyWeakref_GET_OBJECT(ref); in PyType_Modified()
4090 ref = PyWeakref_GET_OBJECT(ref); in type___subclasses___impl()
8549 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref); in recurse_down_subclasses()
/third_party/python/Include/
Dweakrefobject.h77 #define PyWeakref_GET_OBJECT(ref) \ macro
/third_party/python/Modules/
D_weakref.c46 return PyWeakref_GET_OBJECT(value) == Py_None; in is_dead_weakref()
D_abc.c156 set = PyWeakref_GET_OBJECT(setweakref); in _destroy()
503 PyObject *grandchild = PyWeakref_GET_OBJECT(grandchildren); in set_collection_flag_recursive()
D_threadmodule.c1035 PyObject *obj = PyWeakref_GET_OBJECT(localweakref); in _localdummy_destroyed()
1300 PyObject *obj = PyWeakref_GET_OBJECT(wr); in release_sentinel()
/third_party/python/Doc/c-api/
Dweakref.rst67 .. c:function:: PyObject* PyWeakref_GET_OBJECT(PyObject *ref)
/third_party/python/Python/
Dpylifecycle.c1451 PyObject *mod = PyWeakref_GET_OBJECT(PyTuple_GET_ITEM(tup, 1)); in finalize_modules_clear_weaklist()
/third_party/python/Doc/data/
Drefcounts.dat2910 PyWeakref_GET_OBJECT:PyObject*::0:
2911 PyWeakref_GET_OBJECT:PyObject*:ref:0:
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2275 pyobj = PyWeakref_GET_OBJECT(pyobj); in SWIG_Python_GetSwigThis()
2296 PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); in SWIG_Python_GetSwigThis()
/third_party/python/Modules/_ctypes/
D_ctypes.c251 result = PyWeakref_GET_OBJECT(item); in PyDict_GetItemProxy()