HomeSort by relevance Sort by last modified time
    Searched defs:PyObject (Results 1 - 3 of 3) sorted by null

  /external/lldb/include/lldb/Utility/
PythonPointer.h 27 typedef PyObject* element_type;
72 operator PyObject* () { return ptr_; }
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 40 Objects are always accessed through pointers of the type 'PyObject *'.
41 The type 'PyObject' is a structure that only contains the reference count
77 /* PyObject_HEAD defines the initial segment of every PyObject. */
101 /* Nothing is actually declared to be a PyObject, but every pointer to
102 * a Python object can be cast to a PyObject*. This is inheritance built
108 } PyObject;
114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
133 typedef PyObject * (*unaryfunc)(PyObject *);
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 40 Objects are always accessed through pointers of the type 'PyObject *'.
41 The type 'PyObject' is a structure that only contains the reference count
77 /* PyObject_HEAD defines the initial segment of every PyObject. */
101 /* Nothing is actually declared to be a PyObject, but every pointer to
102 * a Python object can be cast to a PyObject*. This is inheritance built
108 } PyObject;
114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
133 typedef PyObject * (*unaryfunc)(PyObject *);
    [all...]

Completed in 1144 milliseconds