Searched refs:PyObject (Results 1 - 25 of 771) sorted by relevance

1234567891011>>

/external/tensorflow/tensorflow/contrib/lite/toco/python/
H A Dtoco.i28 PyObject* TocoConvert(PyObject* model_flags_proto_txt_raw,
29 PyObject* toco_flags_proto_txt_raw,
30 PyObject* input_contents_txt_raw);
H A Dtoco_python_api.h27 PyObject* TocoConvert(PyObject* model_flags_proto_txt_raw,
28 PyObject* toco_flags_proto_txt_raw,
29 PyObject* input_contents_txt_raw);
/external/python/cpython3/Include/
H A Deval.h10 PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *);
12 PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co,
13 PyObject *globals,
14 PyObject *locals,
15 PyObject **args, int argc,
16 PyObject **kwd
[all...]
H A Dfuncobject.h23 PyObject *func_code; /* A code object, the __code__ attribute */
24 PyObject *func_globals; /* A dictionary (other mappings won't do) */
25 PyObject *func_defaults; /* NULL or a tuple */
26 PyObject *func_kwdefaults; /* NULL or a dict */
27 PyObject *func_closure; /* NULL or a tuple of cell objects */
28 PyObject *func_doc; /* The __doc__ attribute, can be anything */
29 PyObject *func_name; /* The __name__ attribute, a string object */
30 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */
31 PyObject *func_weakreflist; /* List of weak references */
32 PyObject *func_modul
[all...]
H A Dpyerrors.h11 #define PyException_HEAD PyObject_HEAD PyObject *dict;\
12 PyObject *args; PyObject *traceback;\
13 PyObject *context; PyObject *cause;\
22 PyObject *msg;
23 PyObject *filename;
24 PyObject *lineno;
25 PyObject *offset;
26 PyObject *tex
[all...]
H A Dcodecs.h27 PyObject *search_function
49 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
79 PyAPI_FUNC(PyObject *) PyCodec_Encode(
80 PyObject *object,
95 PyAPI_FUNC(PyObject *) PyCodec_Decode(
96 PyObject *object,
115 PyAPI_FUNC(PyObject *) _PyCodec_LookupTextEncoding(
120 PyAPI_FUNC(PyObject *) _PyCodec_EncodeText(
121 PyObject *object,
126 PyAPI_FUNC(PyObject *) _PyCodec_DecodeTex
[all...]
H A Dmethodobject.h18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*_PyCFunctionFast) (PyObject *self, PyObject **args,
20 Py_ssize_t nargs, PyObject *kwnames);
21 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
[all...]
/external/python/cpython2/Modules/_sqlite/
H A Dmodule.h30 extern PyObject* pysqlite_Error;
31 extern PyObject* pysqlite_Warning;
32 extern PyObject* pysqlite_InterfaceError;
33 extern PyObject* pysqlite_DatabaseError;
34 extern PyObject* pysqlite_InternalError;
35 extern PyObject* pysqlite_OperationalError;
36 extern PyObject* pysqlite_ProgrammingError;
37 extern PyObject* pysqlite_IntegrityError;
38 extern PyObject* pysqlite_DataError;
39 extern PyObject* pysqlite_NotSupportedErro
[all...]
H A Dconnection.h56 PyObject* isolation_level;
74 PyObject* statements;
75 PyObject* cursors;
82 PyObject* row_factory;
91 PyObject* text_factory;
97 PyObject* function_pinboard;
100 PyObject* collations;
105 PyObject* apsw_connection;
108 PyObject* Warning;
109 PyObject* Erro
[all...]
H A Dmicroprotocols.h33 extern PyObject *psyco_adapters;
44 extern int pysqlite_microprotocols_init(PyObject *dict);
46 PyTypeObject *type, PyObject *proto, PyObject *cast);
47 extern PyObject *pysqlite_microprotocols_adapt(
48 PyObject *obj, PyObject *proto, PyObject *alt);
50 extern PyObject *
51 pysqlite_adapt(pysqlite_Cursor* self, PyObject *arg
[all...]
/external/python/cpython2/Include/
H A Deval.h10 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 *closur
[all...]
H A Dclassobject.h14 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_fun
[all...]
H A Dcodecs.h27 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,
97 PyAPI_FUNC(PyObject *) _PyCodec_LookupTextEncoding(
102 PyAPI_FUNC(PyObject *) _PyCodec_EncodeText(
103 PyObject *object,
108 PyAPI_FUNC(PyObject *) _PyCodec_DecodeTex
[all...]
H A Dpyerrors.h11 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 *offse
[all...]
H A Dabstract.h63 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_nam
[all...]
H A Dfuncobject.h23 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_Ne
[all...]
H A Dmethodobject.h18 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...]
/external/python/cpython3/Modules/_sqlite/
H A Dmodule.h30 extern PyObject* pysqlite_Error;
31 extern PyObject* pysqlite_Warning;
32 extern PyObject* pysqlite_InterfaceError;
33 extern PyObject* pysqlite_DatabaseError;
34 extern PyObject* pysqlite_InternalError;
35 extern PyObject* pysqlite_OperationalError;
36 extern PyObject* pysqlite_ProgrammingError;
37 extern PyObject* pysqlite_IntegrityError;
38 extern PyObject* pysqlite_DataError;
39 extern PyObject* pysqlite_NotSupportedErro
[all...]
H A Dconnection.h52 PyObject* isolation_level;
69 PyObject* statements;
70 PyObject* cursors;
77 PyObject* row_factory;
85 PyObject* text_factory;
91 PyObject* function_pinboard;
94 PyObject* collations;
97 PyObject* Warning;
98 PyObject* Error;
99 PyObject* InterfaceErro
[all...]
H A Dmicroprotocols.h33 extern PyObject *psyco_adapters;
44 extern int pysqlite_microprotocols_init(PyObject *dict);
46 PyTypeObject *type, PyObject *proto, PyObject *cast);
47 extern PyObject *pysqlite_microprotocols_adapt(
48 PyObject *obj, PyObject *proto, PyObject *alt);
50 extern PyObject *
51 pysqlite_adapt(pysqlite_Cursor* self, PyObject *arg
[all...]
/external/python/cpython3/PC/
H A Dconfig.c8 extern PyObject* PyInit_array(void);
10 extern PyObject* PyInit_audioop(void);
12 extern PyObject* PyInit_binascii(void);
13 extern PyObject* PyInit_cmath(void);
14 extern PyObject* PyInit_errno(void);
15 extern PyObject* PyInit_faulthandler(void);
16 extern PyObject* PyInit__tracemalloc(void);
17 extern PyObject* PyInit_gc(void);
18 extern PyObject* PyInit_math(void);
19 extern PyObject* PyInit__md
[all...]
/external/python/cpython2/Modules/_io/
H A D_iomodule.h23 extern int _PyIO_ConvertSsize_t(PyObject *, void *);
29 extern PyObject* _PyIOBase_check_readable(PyObject *self, PyObject *args);
30 extern PyObject* _PyIOBase_check_writable(PyObject *self, PyObject *args);
31 extern PyObject* _PyIOBase_check_seekable(PyObject *self, PyObject *arg
[all...]
/external/tensorflow/tensorflow/python/eager/
H A Dpywrap_tfe.h45 PyObject* attrs, TFE_OutputTensorHandles* outputs,
52 PyObject* TFE_Py_RegisterExceptionClass(PyObject* e);
60 PyObject* TFE_Py_RegisterFallbackExceptionClass(PyObject* e);
65 int MaybeRaiseExceptionFromTFStatus(TF_Status* status, PyObject* exception);
71 PyObject* exception);
74 char* TFE_GetPythonString(PyObject* o);
81 PyObject* TFE_Py_UID();
84 void TFE_DeleteContextCapsule(PyObject* contex
[all...]
/external/python/cpython2/Modules/
H A Dpuremodule.c62 static PyObject*
63 call_voidarg_function(VoidArgFunc func, PyObject *self, PyObject *args)
74 static PyObject*
75 call_stringarg_function(StringArgFunc func, PyObject *self, PyObject *args)
87 static PyObject*
88 call_stringorint_function(StringArgFunc func, PyObject *self, PyObject *args)
115 static PyObject*
[all...]
/external/python/cpython3/Modules/clinic/
H A D_weakref.c.h15 _weakref_getweakrefcount_impl(PyObject *module, PyObject *object);
17 static PyObject *
18 _weakref_getweakrefcount(PyObject *module, PyObject *object)
20 PyObject *return_value = NULL;
42 static PyObject *
43 _weakref__remove_dead_weakref_impl(PyObject *module, PyObject *dct,
44 PyObject *ke
[all...]

Completed in 3011 milliseconds

1234567891011>>