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

  /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 61 milliseconds