/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
eval.h | 10 PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *); 12 PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co, 13 PyObject *globals, 14 PyObject *locals, 15 PyObject **args, int argc, 16 PyObject **kwds, int kwdc, 17 PyObject **defs, int defc, 18 PyObject *closure) [all...] |
classobject.h | 14 PyObject *cl_bases; /* A tuple of class objects */ 15 PyObject *cl_dict; /* A dictionary */ 16 PyObject *cl_name; /* A string */ 18 PyObject *cl_getattr; 19 PyObject *cl_setattr; 20 PyObject *cl_delattr; 21 PyObject *cl_weakreflist; /* List of weak references */ 27 PyObject *in_dict; /* A dictionary */ 28 PyObject *in_weakreflist; /* List of weak references */ 33 PyObject *im_func; /* The callable object implementing the method * [all...] |
pymactoolbox.h | 20 extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ 21 PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ 22 PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ 23 PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */ 32 int PyMac_GetOSType(PyObject *, OSType *); /* argument parser for OSType */ 33 PyObject *PyMac_BuildOSType(OSType); /* Convert OSType to PyObject */ 35 PyObject *PyMac_BuildNumVersion(NumVersion);/* Convert NumVersion to PyObject */ [all...] |
pyerrors.h | 11 PyObject *dict; 12 PyObject *args; 13 PyObject *message; 18 PyObject *dict; 19 PyObject *args; 20 PyObject *message; 21 PyObject *msg; 22 PyObject *filename; 23 PyObject *lineno; 24 PyObject *offset [all...] |
abstract.h | 63 to declare any variables of type "PyObject *". This should be enough 134 int PyObject_Print(PyObject *o, FILE *fp, int flags); 146 int PyObject_HasAttrString(PyObject *o, char *attr_name); 158 PyObject* PyObject_GetAttrString(PyObject *o, char *attr_name); 168 int PyObject_HasAttr(PyObject *o, PyObject *attr_name); 180 PyObject* PyObject_GetAttr(PyObject *o, PyObject *attr_name) [all...] |
funcobject.h | 23 PyObject *func_code; /* A code object */ 24 PyObject *func_globals; /* A dictionary (other mappings won't do) */ 25 PyObject *func_defaults; /* NULL or a tuple */ 26 PyObject *func_closure; /* NULL or a tuple of cell objects */ 27 PyObject *func_doc; /* The __doc__ attribute, can be anything */ 28 PyObject *func_name; /* The __name__ attribute, a string object */ 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ 30 PyObject *func_weakreflist; /* List of weak references */ 31 PyObject *func_module; /* The __module__ attribute, can be anything */ 44 PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *) [all...] |
codecs.h | 27 PyObject *search_function 48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup( 62 PyAPI_FUNC(PyObject *) PyCodec_Encode( 63 PyObject *object, 78 PyAPI_FUNC(PyObject *) PyCodec_Decode( 79 PyObject *object, 94 PyAPI_FUNC(PyObject *) PyCodec_Encoder( 100 PyAPI_FUNC(PyObject *) PyCodec_Decoder( 106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder( 113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder [all...] |
methodobject.h | 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); 19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, 20 PyObject *); 21 typedef PyObject *(*PyNoArgsFunction)(PyObject *); 23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *); [all...] |
dictobject.h | 56 PyObject *me_key; 57 PyObject *me_value; 87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash); 109 PyAPI_FUNC(PyObject *) PyDict_New(void); 110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key); 111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item) [all...] |
code.h | 16 PyObject *co_code; /* instruction opcodes */ 17 PyObject *co_consts; /* list (constants used) */ 18 PyObject *co_names; /* list of strings (names used) */ 19 PyObject *co_varnames; /* tuple of strings (local variable names) */ 20 PyObject *co_freevars; /* tuple of strings (free variable names) */ 21 PyObject *co_cellvars; /* tuple of strings (cell variable names) */ 23 PyObject *co_filename; /* string (where it was loaded from) */ 24 PyObject *co_name; /* string (name, for reference) */ 26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See 29 PyObject *co_weakreflist; /* to support weakrefs to code objects * [all...] |
descrobject.h | 8 typedef PyObject *(*getter)(PyObject *, void *); 9 typedef int (*setter)(PyObject *, PyObject *, void *); 19 typedef PyObject *(*wrapperfunc)(PyObject *self, PyObject *args, 22 typedef PyObject *(*wrapperfunc_kwds)(PyObject *self, PyObject *args [all...] |
longobject.h | 18 PyAPI_FUNC(PyObject *) PyLong_FromLong(long); 19 PyAPI_FUNC(PyObject *) PyLong_FromUnsignedLong(unsigned long); 20 PyAPI_FUNC(PyObject *) PyLong_FromDouble(double); 21 PyAPI_FUNC(PyObject *) PyLong_FromSize_t(size_t); 22 PyAPI_FUNC(PyObject *) PyLong_FromSsize_t(Py_ssize_t); 23 PyAPI_FUNC(long) PyLong_AsLong(PyObject *); 24 PyAPI_FUNC(long) PyLong_AsLongAndOverflow(PyObject *, int *); 25 PyAPI_FUNC(unsigned long) PyLong_AsUnsignedLong(PyObject *); 26 PyAPI_FUNC(unsigned long) PyLong_AsUnsignedLongMask(PyObject *); 27 PyAPI_FUNC(Py_ssize_t) PyLong_AsSsize_t(PyObject *); [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
eval.h | 10 PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *); 12 PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co, 13 PyObject *globals, 14 PyObject *locals, 15 PyObject **args, int argc, 16 PyObject **kwds, int kwdc, 17 PyObject **defs, int defc, 18 PyObject *closure) [all...] |
classobject.h | 14 PyObject *cl_bases; /* A tuple of class objects */ 15 PyObject *cl_dict; /* A dictionary */ 16 PyObject *cl_name; /* A string */ 18 PyObject *cl_getattr; 19 PyObject *cl_setattr; 20 PyObject *cl_delattr; 21 PyObject *cl_weakreflist; /* List of weak references */ 27 PyObject *in_dict; /* A dictionary */ 28 PyObject *in_weakreflist; /* List of weak references */ 33 PyObject *im_func; /* The callable object implementing the method * [all...] |
pymactoolbox.h | 20 extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ 21 PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ 22 PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ 23 PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */ 32 int PyMac_GetOSType(PyObject *, OSType *); /* argument parser for OSType */ 33 PyObject *PyMac_BuildOSType(OSType); /* Convert OSType to PyObject */ 35 PyObject *PyMac_BuildNumVersion(NumVersion);/* Convert NumVersion to PyObject */ [all...] |
pyerrors.h | 11 PyObject *dict; 12 PyObject *args; 13 PyObject *message; 18 PyObject *dict; 19 PyObject *args; 20 PyObject *message; 21 PyObject *msg; 22 PyObject *filename; 23 PyObject *lineno; 24 PyObject *offset [all...] |
abstract.h | 63 to declare any variables of type "PyObject *". This should be enough 134 int PyObject_Print(PyObject *o, FILE *fp, int flags); 146 int PyObject_HasAttrString(PyObject *o, char *attr_name); 158 PyObject* PyObject_GetAttrString(PyObject *o, char *attr_name); 168 int PyObject_HasAttr(PyObject *o, PyObject *attr_name); 180 PyObject* PyObject_GetAttr(PyObject *o, PyObject *attr_name) [all...] |
funcobject.h | 23 PyObject *func_code; /* A code object */ 24 PyObject *func_globals; /* A dictionary (other mappings won't do) */ 25 PyObject *func_defaults; /* NULL or a tuple */ 26 PyObject *func_closure; /* NULL or a tuple of cell objects */ 27 PyObject *func_doc; /* The __doc__ attribute, can be anything */ 28 PyObject *func_name; /* The __name__ attribute, a string object */ 29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ 30 PyObject *func_weakreflist; /* List of weak references */ 31 PyObject *func_module; /* The __module__ attribute, can be anything */ 44 PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *) [all...] |
codecs.h | 27 PyObject *search_function 48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup( 62 PyAPI_FUNC(PyObject *) PyCodec_Encode( 63 PyObject *object, 78 PyAPI_FUNC(PyObject *) PyCodec_Decode( 79 PyObject *object, 94 PyAPI_FUNC(PyObject *) PyCodec_Encoder( 100 PyAPI_FUNC(PyObject *) PyCodec_Decoder( 106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder( 113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder [all...] |
methodobject.h | 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); 19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, 20 PyObject *); 21 typedef PyObject *(*PyNoArgsFunction)(PyObject *); 23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *); [all...] |
dictobject.h | 56 PyObject *me_key; 57 PyObject *me_value; 87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash); 109 PyAPI_FUNC(PyObject *) PyDict_New(void); 110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key); 111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item) [all...] |
code.h | 16 PyObject *co_code; /* instruction opcodes */ 17 PyObject *co_consts; /* list (constants used) */ 18 PyObject *co_names; /* list of strings (names used) */ 19 PyObject *co_varnames; /* tuple of strings (local variable names) */ 20 PyObject *co_freevars; /* tuple of strings (free variable names) */ 21 PyObject *co_cellvars; /* tuple of strings (cell variable names) */ 23 PyObject *co_filename; /* string (where it was loaded from) */ 24 PyObject *co_name; /* string (name, for reference) */ 26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See 29 PyObject *co_weakreflist; /* to support weakrefs to code objects * [all...] |
descrobject.h | 8 typedef PyObject *(*getter)(PyObject *, void *); 9 typedef int (*setter)(PyObject *, PyObject *, void *); 19 typedef PyObject *(*wrapperfunc)(PyObject *self, PyObject *args, 22 typedef PyObject *(*wrapperfunc_kwds)(PyObject *self, PyObject *args [all...] |
longobject.h | 18 PyAPI_FUNC(PyObject *) PyLong_FromLong(long); 19 PyAPI_FUNC(PyObject *) PyLong_FromUnsignedLong(unsigned long); 20 PyAPI_FUNC(PyObject *) PyLong_FromDouble(double); 21 PyAPI_FUNC(PyObject *) PyLong_FromSize_t(size_t); 22 PyAPI_FUNC(PyObject *) PyLong_FromSsize_t(Py_ssize_t); 23 PyAPI_FUNC(long) PyLong_AsLong(PyObject *); 24 PyAPI_FUNC(long) PyLong_AsLongAndOverflow(PyObject *, int *); 25 PyAPI_FUNC(unsigned long) PyLong_AsUnsignedLong(PyObject *); 26 PyAPI_FUNC(unsigned long) PyLong_AsUnsignedLongMask(PyObject *); 27 PyAPI_FUNC(Py_ssize_t) PyLong_AsSsize_t(PyObject *); [all...] |
/prebuilts/misc/common/swig/include/2.0.11/python/ |
defarg.swg | 23 SWIGINTERN PyObject *swig_call_defargs(PyObject *self, PyObject *args) { 24 PyObject *func; 25 PyObject *parms;
|