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

1 2

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
classobject.h 41 #define PyClass_Check(op) ((op)->ob_type == &PyClass_Type)
42 #define PyInstance_Check(op) ((op)->ob_type == &PyInstance_Type)
43 #define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
intobject.h 31 PyType_FastSubclass((op)->ob_type, Py_TPFLAGS_INT_SUBCLASS)
32 #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
abstract.h 535 (((obj)->ob_type->tp_as_buffer != NULL) && \
536 (PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_NEWBUFFER)) && \
537 ((obj)->ob_type->tp_as_buffer->bf_getbuffer != NULL))
638 (PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_ITER) && \
639 (obj)->ob_type->tp_iternext != NULL && \
640 (obj)->ob_type->tp_iternext != &_PyObject_NextNotImplemented)
849 ((obj)->ob_type->tp_as_number != NULL && \
850 PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_INDEX) && \
851 (obj)->ob_type->tp_as_number->nb_index != NULL)
    [all...]
frameobject.h 57 #define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type)
pyerrors.h 103 PyType_FastSubclass((x)->ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS))
113 : (PyObject*)((x)->ob_type)))
object.h 81 struct _typeobject *ob_type;
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
classobject.h 41 #define PyClass_Check(op) ((op)->ob_type == &PyClass_Type)
42 #define PyInstance_Check(op) ((op)->ob_type == &PyInstance_Type)
43 #define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
intobject.h 31 PyType_FastSubclass((op)->ob_type, Py_TPFLAGS_INT_SUBCLASS)
32 #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
abstract.h 535 (((obj)->ob_type->tp_as_buffer != NULL) && \
536 (PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_NEWBUFFER)) && \
537 ((obj)->ob_type->tp_as_buffer->bf_getbuffer != NULL))
638 (PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_ITER) && \
639 (obj)->ob_type->tp_iternext != NULL && \
640 (obj)->ob_type->tp_iternext != &_PyObject_NextNotImplemented)
849 ((obj)->ob_type->tp_as_number != NULL && \
850 PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_INDEX) && \
851 (obj)->ob_type->tp_as_number->nb_index != NULL)
    [all...]
frameobject.h 57 #define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type)
pyerrors.h 103 PyType_FastSubclass((x)->ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS))
113 : (PyObject*)((x)->ob_type)))
object.h 81 struct _typeobject *ob_type;
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy_reg.py 14 def pickle(ob_type, pickle_function, constructor_ob=None):
15 if type(ob_type) is _ClassType:
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy_reg.py 14 def pickle(ob_type, pickle_function, constructor_ob=None):
15 if type(ob_type) is _ClassType:
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 436 'Ensure that a PyObject* with NULL ob_type is handled gracefully'
438 'set op->ob_type=0')
441 'Ensure that a PyObject* with a corrupt ob_type is handled gracefully'
443 'set op->ob_type=0xDEADBEEF',
449 'set op->ob_type->tp_flags=0x0',
455 'set op->ob_type->tp_name=0xDEADBEEF',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 436 'Ensure that a PyObject* with NULL ob_type is handled gracefully'
438 'set op->ob_type=0')
441 'Ensure that a PyObject* with a corrupt ob_type is handled gracefully'
443 'set op->ob_type=0xDEADBEEF',
449 'set op->ob_type->tp_flags=0x0',
455 'set op->ob_type->tp_name=0xDEADBEEF',
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python_descriptor.cc 146 self->ob_type->tp_free(reinterpret_cast<PyObject*>(self));
273 self->ob_type->tp_free(reinterpret_cast<PyObject*>(self));
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ModuleSetupCode.c 72 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
266 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_GetSlice(obj, a, b)) : \
267 (PyErr_Format(PyExc_TypeError, "'%.200s' object is unsliceable", (obj)->ob_type->tp_name), (PyObject*)0)))
270 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_SetSlice(obj, a, b, value)) : \
271 (PyErr_Format(PyExc_TypeError, "'%.200s' object doesn't support slice assignment", (obj)->ob_type->tp_name), -1)))
274 (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_DelSlice(obj, a, b)) : \
275 (PyErr_Format(PyExc_TypeError, "'%.200s' object doesn't support slice deletion", (obj)->ob_type->tp_name), -1)))
Builtins.c 379 ((ob)->ob_type == &PySet_Type || \
380 (ob)->ob_type == &PyFrozenSet_Type)
Buffer.c 121 if (obj->ob_type->tp_dict) {
123 obj->ob_type->tp_dict, PYIDENT("__pyx_getbuffer"));
164 if (obj->ob_type->tp_dict) {
166 obj->ob_type->tp_dict, PYIDENT("__pyx_releasebuffer"));
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyrun.swg 498 if (PyType_IsSubtype(op->ob_type, target_tp))
500 return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0);
799 swigpyobject_type.ob_type = &PyType_Type;
887 return ((op)->ob_type == SwigPyPacked_TypeOnce())
888 || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0);
978 swigpypacked_type.ob_type = &PyType_Type;
    [all...]
pyhead.swg 22 # define Py_TYPE(op) ((op)->ob_type)
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
ref.pxd 5 PyTypeObject *ob_type
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
python.c 395 pcpus->ob_type->tp_free((PyObject*)pcpus);
464 pthreads->ob_type->tp_free((PyObject*)pthreads);
622 pevsel->ob_type->tp_free((PyObject*)pevsel);
713 pevlist->ob_type->tp_free((PyObject*)pevlist);
  /external/chromium_org/third_party/v4l2capture/
v4l2capture.c 119 self->ob_type->tp_free((PyObject *)self);

Completed in 3944 milliseconds

1 2