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

  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
bytes.pxd 1 from cpython.ref cimport PyObject
13 # This subtype of PyObject represents a Python bytes object.
110 void PyBytes_Concat(PyObject **string, object newpart)
118 void PyBytes_ConcatAndDel(PyObject **string, object newpart)
123 int _PyBytes_Resize(PyObject **string, Py_ssize_t newsize) except -1
142 void PyBytes_InternInPlace(PyObject **string)
cobject.pxd 1 from cpython.ref cimport PyObject
dict.pxd 1 from cpython.ref cimport PyObject
11 # This subtype of PyObject represents a Python dictionary object
69 PyObject* PyDict_GetItem(object p, object key)
75 PyObject* PyDict_GetItemString(object p, char *key)
78 # char*, rather than a PyObject*.
102 int PyDict_Next(object p, Py_ssize_t *ppos, PyObject* *pkey, PyObject* *pvalue)
108 # either point to PyObject* variables that will be filled in with
exc.pxd 1 from cpython.ref cimport PyObject
43 PyObject* PyErr_Occurred()
69 void PyErr_NormalizeException(PyObject** exc, PyObject** val, PyObject** tb)
81 void PyErr_Fetch(PyObject** ptype, PyObject** pvalue, PyObject** ptraceback)
91 void PyErr_Restore(PyObject* type, PyObject* value, PyObject* traceback
    [all...]
function.pxd 1 from cpython.ref cimport PyObject
33 PyObject* PyFunction_GetCode(object op) except? NULL
37 PyObject* PyFunction_GetGlobals(object op) except? NULL
41 PyObject* PyFunction_GetModule(object op) except? NULL
47 PyObject* PyFunction_GetDefaults(object op) except? NULL
57 PyObject* PyFunction_GetClosure(object op) except? NULL
getargs.pxd 1 from cpython.ref cimport PyObject
list.pxd 1 from cpython.ref cimport PyObject
32 PyObject* PyList_GetItem(object list, Py_ssize_t index) except NULL
39 PyObject* PyList_GET_ITEM(object list, Py_ssize_t i)
module.pxd 1 from cpython.ref cimport PyObject
54 PyObject* PyImport_AddModule(char *name) except NULL
93 PyObject* PyImport_GetModuleDict() except NULL
142 PyObject* PyModule_GetDict(object module) except NULL
number.pxd 1 from cpython.ref cimport PyObject
204 int PyNumber_Coerce(PyObject **p1, PyObject **p2) except -1
206 # PyObject*. If the objects pointed to by *p1 and *p2 have the
pycapsule.pxd 1 from cpython.ref cimport PyObject
10 # This subtype of PyObject represents an opaque value, useful for
pystate.pxd 3 from cpython.ref cimport PyObject
26 ctypedef int (*Py_tracefunc)(PyObject *, PyFrameObject *, int, PyObject *)
49 PyObject * PyThreadState_GetDict()
50 int PyThreadState_SetAsyncExc(long, PyObject *)
sequence.pxd 1 from cpython.ref cimport PyObject
113 PyObject* PySequence_Fast_GET_ITEM(object o, Py_ssize_t i)
118 PyObject** PySequence_Fast_ITEMS(object o)
119 # Return the underlying array of PyObject pointers. Assumes that o
string.pxd 1 from cpython.ref cimport PyObject
13 # This subtype of PyObject represents a Python string object.
110 void PyString_Concat(PyObject **string, object newpart)
118 void PyString_ConcatAndDel(PyObject **string, object newpart)
123 int _PyString_Resize(PyObject **string, Py_ssize_t newsize) except -1
142 void PyString_InternInPlace(PyObject **string)
tuple.pxd 1 from cpython.ref cimport PyObject
34 PyObject* PyTuple_GetItem(object p, Py_ssize_t pos) except NULL
40 PyObject* PyTuple_GET_ITEM(object p, Py_ssize_t pos)
58 int _PyTuple_Resize(PyObject **p, Py_ssize_t newsize) except -1
weakref.pxd 1 from cpython.ref cimport PyObject
36 PyObject* PyWeakref_GetObject(object ref)
40 PyObject* PyWeakref_GET_OBJECT(object ref)
datetime.pxd 1 from cpython.ref cimport PyObject
29 PyObject *tzinfo
33 PyObject *tzinfo
object.pxd 1 from cpython.ref cimport PyObject, PyTypeObject
198 # of PyObject* arguments. The arguments are provided as a variable
202 #PyObject* PyObject_CallMethodObjArgs(object o, object name, ..., NULL)
207 # variable number of PyObject* arguments. The arguments are
  /external/chromium_org/third_party/cython/src/Cython/Includes/numpy/
__init__.pxd 21 from cpython.object cimport PyObject
189 PyObject* base
873 PyObject *obj
874 PyObject *userloops
    [all...]
  /external/lldb/include/lldb/Utility/
PythonPointer.h 27 typedef PyObject* element_type;
72 operator PyObject* () { return ptr_; }
  /external/chromium_org/third_party/cython/src/Cython/Runtime/
refnanny.pyx 1 from cpython.ref cimport PyObject, Py_INCREF, Py_DECREF, Py_XDECREF, Py_XINCREF
83 cdef PyObject* SetupContext(char* funcname, int lineno, char* filename) except NULL:
89 cdef (PyObject*) type = NULL, value = NULL, tb = NULL, result = NULL
95 result = <PyObject*>ctx
101 cdef void GOTREF(PyObject* ctx, PyObject* p_obj, int lineno):
103 cdef (PyObject*) type = NULL, value = NULL, tb = NULL
118 cdef int GIVEREF_and_report(PyObject* ctx, PyObject* p_obj, int lineno):
120 cdef (PyObject*) type = NULL, value = NULL, tb = NUL
    [all...]
  /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 739 milliseconds