Searched defs:PyObject (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dbytes.pxd1 from cpython.ref cimport PyObject namespace
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)
H A Dcobject.pxd1 from cpython.ref cimport PyObject namespace
H A Ddict.pxd1 from cpython.ref cimport PyObject namespace
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
H A Dexc.pxd1 from cpython.ref cimport PyObject namespace
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* valu
[all...]
H A Dfunction.pxd1 from cpython.ref cimport PyObject namespace
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
H A Dgetargs.pxd1 from cpython.ref cimport PyObject namespace
H A Dlist.pxd1 from cpython.ref cimport PyObject namespace
32 PyObject* PyList_GetItem(object list, Py_ssize_t index) except NULL
39 PyObject* PyList_GET_ITEM(object list, Py_ssize_t i)
H A Dmodule.pxd1 from cpython.ref cimport PyObject namespace
54 PyObject* PyImport_AddModule(char *name) except NULL
93 PyObject* PyImport_GetModuleDict() except NULL
142 PyObject* PyModule_GetDict(object module) except NULL
H A Dnumber.pxd1 from cpython.ref cimport PyObject namespace
204 int PyNumber_Coerce(PyObject **p1, PyObject **p2) except -1
206 # PyObject*. If the objects pointed to by *p1 and *p2 have the
H A Dpycapsule.pxd1 from cpython.ref cimport PyObject namespace
10 # This subtype of PyObject represents an opaque value, useful for
H A Dpystate.pxd3 from cpython.ref cimport PyObject namespace
26 ctypedef int (*Py_tracefunc)(PyObject *, PyFrameObject *, int, PyObject *)
49 PyObject * PyThreadState_GetDict()
50 int PyThreadState_SetAsyncExc(long, PyObject *)
H A Dsequence.pxd1 from cpython.ref cimport PyObject namespace
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
H A Dstring.pxd1 from cpython.ref cimport PyObject namespace
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)
H A Dtuple.pxd1 from cpython.ref cimport PyObject namespace
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
H A Dweakref.pxd1 from cpython.ref cimport PyObject namespace
36 PyObject* PyWeakref_GetObject(object ref)
40 PyObject* PyWeakref_GET_OBJECT(object ref)
H A Ddatetime.pxd1 from cpython.ref cimport PyObject namespace
29 PyObject *tzinfo
33 PyObject *tzinfo
H A Dobject.pxd1 from cpython.ref cimport PyObject, PyTypeObject namespace
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/
H A D__init__.pxd21 from cpython.object cimport PyObject namespace
189 PyObject* base
873 PyObject *obj
874 PyObject *userloops
906 (ufunc, PyObject *, PyObject *, PyArrayObject **)
950 (char *, int *, int *, PyObject **)
952 (int, PyObject *, int *)
956 (int, PyObject *, int, int *)
967 cdef PyObject* basept
[all...]
/external/lldb/include/lldb/Utility/
H A DPythonPointer.h27 typedef PyObject* element_type;
72 operator PyObject* () { return ptr_; }
/external/chromium_org/third_party/cython/src/Cython/Runtime/
H A Drefnanny.pyx1 from cpython.ref cimport PyObject, Py_INCREF, Py_DECREF, Py_XDECREF, Py_XINCREF namespace
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*) typ
[all...]

Completed in 222 milliseconds