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

1 2

  /prebuilts/gdb/darwin-x86/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)
  /prebuilts/gdb/linux-x86/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)
  /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)
  /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)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/
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
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/include/
cext.h 238 if (PyType_IS_GC(((PyObject *)self)->ob_type)) \
241 ((PyObject *)self)->ob_type->tp_free((PyObject *)self); \
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/_setup/include/
cext.h 238 if (PyType_IS_GC(((PyObject *)self)->ob_type)) \
241 ((PyObject *)self)->ob_type->tp_free((PyObject *)self); \
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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',

Completed in 712 milliseconds

1 2