HomeSort by relevance Sort by last modified time
    Searched refs:PyWeakref_GET_OBJECT (Results 1 - 25 of 26) sorted by null

1 2

  /external/python/cpython3/Objects/
weakrefobject.c 135 PyObject *object = PyWeakref_GET_OBJECT(self);
148 if (PyWeakref_GET_OBJECT(self) == Py_None) {
152 self->hash = PyObject_Hash(PyWeakref_GET_OBJECT(self));
163 if (PyWeakref_GET_OBJECT(self) == Py_None)
166 name = _PyObject_GetAttrId(PyWeakref_GET_OBJECT(self), &PyId___name__);
173 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
174 PyWeakref_GET_OBJECT(self));
180 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
181 PyWeakref_GET_OBJECT(self),
200 if (PyWeakref_GET_OBJECT(self) == Py_Non
    [all...]
typeobject.c 243 ref = PyWeakref_GET_OBJECT(ref);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
weakrefobject.c 133 PyObject *object = PyWeakref_GET_OBJECT(self);
146 if (PyWeakref_GET_OBJECT(self) == Py_None) {
150 self->hash = PyObject_Hash(PyWeakref_GET_OBJECT(self));
159 if (PyWeakref_GET_OBJECT(self) == Py_None) {
164 PyObject *nameobj = PyObject_GetAttrString(PyWeakref_GET_OBJECT(self),
174 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
175 PyWeakref_GET_OBJECT(self),
182 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
183 PyWeakref_GET_OBJECT(self));
201 if (PyWeakref_GET_OBJECT(self) == Py_None
    [all...]
typeobject.c 86 ref = PyWeakref_GET_OBJECT(ref);
394 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
weakrefobject.c 55 if (PyWeakref_GET_OBJECT(self) != Py_None) {
57 PyWeakref_GET_OBJECT(self));
134 PyObject *object = PyWeakref_GET_OBJECT(self);
147 if (PyWeakref_GET_OBJECT(self) == Py_None) {
151 self->hash = PyObject_Hash(PyWeakref_GET_OBJECT(self));
160 if (PyWeakref_GET_OBJECT(self) == Py_None) {
165 PyObject *nameobj = PyObject_GetAttrString(PyWeakref_GET_OBJECT(self),
175 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
176 PyWeakref_GET_OBJECT(self),
194 if (PyWeakref_GET_OBJECT(self) == Py_None
    [all...]
typeobject.c 86 ref = PyWeakref_GET_OBJECT(ref);
388 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
    [all...]
  /external/python/cpython2/Objects/
weakrefobject.c 133 PyObject *object = PyWeakref_GET_OBJECT(self);
146 if (PyWeakref_GET_OBJECT(self) == Py_None) {
150 self->hash = PyObject_Hash(PyWeakref_GET_OBJECT(self));
159 if (PyWeakref_GET_OBJECT(self) == Py_None) {
164 PyObject *nameobj = PyObject_GetAttrString(PyWeakref_GET_OBJECT(self),
174 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
175 PyWeakref_GET_OBJECT(self),
182 Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name,
183 PyWeakref_GET_OBJECT(self));
201 if (PyWeakref_GET_OBJECT(self) == Py_Non
    [all...]
typeobject.c 107 ref = PyWeakref_GET_OBJECT(ref);
414 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
weakrefobject.h 73 #define PyWeakref_GET_OBJECT(ref) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
weakrefobject.h 69 #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object)
  /external/python/cpython2/Include/
weakrefobject.h 73 #define PyWeakref_GET_OBJECT(ref) \
  /external/python/cpython3/Include/
weakrefobject.h 77 #define PyWeakref_GET_OBJECT(ref) \
  /prebuilts/gdb/darwin-x86/include/python2.7/
weakrefobject.h 76 #define PyWeakref_GET_OBJECT(ref) \
  /prebuilts/gdb/linux-x86/include/python2.7/
weakrefobject.h 76 #define PyWeakref_GET_OBJECT(ref) \
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
weakrefobject.h 76 #define PyWeakref_GET_OBJECT(ref) \
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
weakrefobject.h 76 #define PyWeakref_GET_OBJECT(ref) \
  /external/python/cpython3/Modules/
_weakref.c 45 return PyWeakref_GET_OBJECT(value) == Py_None;
_threadmodule.c 955 obj = PyWeakref_GET_OBJECT(localweakref);
    [all...]
  /external/python/cpython3/Modules/_io/
_iomodule.c 590 mod = PyWeakref_GET_OBJECT(state->locale_module);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
threadmodule.c 571 obj = PyWeakref_GET_OBJECT(localweakref);
  /external/python/cpython2/Modules/
threadmodule.c 577 obj = PyWeakref_GET_OBJECT(localweakref);
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyrun.swg 1058 pyobj = PyWeakref_GET_OBJECT(pyobj);
1079 PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
    [all...]
  /external/python/cpython3/Python/
import.c 442 PyObject *mod = PyWeakref_GET_OBJECT(PyTuple_GET_ITEM(tup, 1));
    [all...]
  /external/python/cpython2/Modules/_ctypes/
_ctypes.c 288 result = PyWeakref_GET_OBJECT(item);
    [all...]
  /external/python/cpython3/Modules/_ctypes/
_ctypes.c 246 result = PyWeakref_GET_OBJECT(item);
    [all...]

Completed in 1070 milliseconds

1 2