HomeSort by relevance Sort by last modified time
    Searched refs:PyObject (Results 76 - 100 of 150) sorted by null

1 2 34 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
xxmodule.c 19 static PyObject *ErrorObject;
23 PyObject *x_attr; /* Attributes dictionary */
31 newXxoObject(PyObject *arg)
50 static PyObject *
51 Xxo_demo(XxoObject *self, PyObject *args)
65 static PyObject *
69 PyObject *v = PyDict_GetItemString(self->x_attr, name);
75 return Py_FindMethod(Xxo_methods, (PyObject *)self, name);
79 Xxo_setattr(XxoObject *self, char *name, PyObject *v)
151 static PyObject *
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
xxmodule.c 19 static PyObject *ErrorObject;
23 PyObject *x_attr; /* Attributes dictionary */
31 newXxoObject(PyObject *arg)
50 static PyObject *
51 Xxo_demo(XxoObject *self, PyObject *args)
65 static PyObject *
69 PyObject *v = PyDict_GetItemString(self->x_attr, name);
75 return Py_FindMethod(Xxo_methods, (PyObject *)self, name);
79 Xxo_setattr(XxoObject *self, char *name, PyObject *v)
151 static PyObject *
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cobject.h 53 PyAPI_FUNC(PyObject *) PyCObject_FromVoidPtr(
62 PyAPI_FUNC(PyObject *) PyCObject_FromVoidPtrAndDesc(
66 PyAPI_FUNC(void *) PyCObject_AsVoidPtr(PyObject *);
69 PyAPI_FUNC(void *) PyCObject_GetDesc(PyObject *);
75 PyAPI_FUNC(int) PyCObject_SetVoidPtr(PyObject *self, void *cobj);
frameobject.h 20 PyObject *f_builtins; /* builtin symbol table (PyDictObject) */
21 PyObject *f_globals; /* global symbol table (PyDictObject) */
22 PyObject *f_locals; /* local symbol table (any mapping) */
23 PyObject **f_valuestack; /* points after the last local */
27 PyObject **f_stacktop;
28 PyObject *f_trace; /* Trace function */
37 PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
49 PyObject *f_localsplus[1]; /* locals+stack, dynamically sized */
62 PyObject *, PyObject *);
    [all...]
sliceobject.h 9 PyAPI_DATA(PyObject) _Py_EllipsisObject; /* Don't use this directly */
24 PyObject *start, *stop, *step; /* not NULL */
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
33 PyObject* step);
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
symtable.h 17 PyObject *st_symbols; /* dictionary of symbol table entries */
18 PyObject *st_stack; /* stack of namespace info */
19 PyObject *st_global; /* borrowed ref to MODULE in st_symbols */
21 PyObject *st_private; /* name of current class or NULL */
27 PyObject *ste_id; /* int: key in st_symbols */
28 PyObject *ste_symbols; /* dict: name to flags */
29 PyObject *ste_name; /* string: name of block */
30 PyObject *ste_varnames; /* list of variable names */
31 PyObject *ste_children; /* list of child ids */
53 PyAPI_FUNC(int) PyST_GetScope(PySTEntryObject *, PyObject *);
    [all...]
weakrefobject.h 22 PyObject *wr_object;
25 PyObject *wr_callback;
59 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
60 PyObject *callback);
61 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
62 PyObject *callback);
63 PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref)
    [all...]
py_curses.h 121 static PyObject *PyCurses_ ## X (PyObject *self) \
127 static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \
143 static PyObject *PyCurses_ ## X (PyObject *self) \
150 static PyObject *PyCurses_ ## X (PyObject *self) \
156 static PyObject *PyCurses_ ## X (PyObject *self)
    [all...]
boolobject.h 23 #define Py_False ((PyObject *) &_Py_ZeroStruct)
24 #define Py_True ((PyObject *) &_Py_TrueStruct)
31 PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
genobject.h 23 PyObject *gi_code;
26 PyObject *gi_weakreflist;
34 PyAPI_FUNC(PyObject *) PyGen_New(struct _frame *);
floatobject.h 43 PyAPI_FUNC(PyObject *) PyFloat_GetInfo(void);
45 /* Return Python float from string PyObject. Second argument ignored on
48 PyAPI_FUNC(PyObject *) PyFloat_FromString(PyObject*, char** junk);
51 PyAPI_FUNC(PyObject *) PyFloat_FromDouble(double);
55 PyAPI_FUNC(double) PyFloat_AsDouble(PyObject *);
126 PyAPI_FUNC(PyObject *) _PyFloat_FormatAdvanced(PyObject *obj,
133 PyAPI_FUNC(PyObject *) _Py_double_round(double x, int ndigits);
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cobject.h 53 PyAPI_FUNC(PyObject *) PyCObject_FromVoidPtr(
62 PyAPI_FUNC(PyObject *) PyCObject_FromVoidPtrAndDesc(
66 PyAPI_FUNC(void *) PyCObject_AsVoidPtr(PyObject *);
69 PyAPI_FUNC(void *) PyCObject_GetDesc(PyObject *);
75 PyAPI_FUNC(int) PyCObject_SetVoidPtr(PyObject *self, void *cobj);
frameobject.h 20 PyObject *f_builtins; /* builtin symbol table (PyDictObject) */
21 PyObject *f_globals; /* global symbol table (PyDictObject) */
22 PyObject *f_locals; /* local symbol table (any mapping) */
23 PyObject **f_valuestack; /* points after the last local */
27 PyObject **f_stacktop;
28 PyObject *f_trace; /* Trace function */
37 PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
49 PyObject *f_localsplus[1]; /* locals+stack, dynamically sized */
62 PyObject *, PyObject *);
    [all...]
sliceobject.h 9 PyAPI_DATA(PyObject) _Py_EllipsisObject; /* Don't use this directly */
24 PyObject *start, *stop, *step; /* not NULL */
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
33 PyObject* step);
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
symtable.h 17 PyObject *st_symbols; /* dictionary of symbol table entries */
18 PyObject *st_stack; /* stack of namespace info */
19 PyObject *st_global; /* borrowed ref to MODULE in st_symbols */
21 PyObject *st_private; /* name of current class or NULL */
27 PyObject *ste_id; /* int: key in st_symbols */
28 PyObject *ste_symbols; /* dict: name to flags */
29 PyObject *ste_name; /* string: name of block */
30 PyObject *ste_varnames; /* list of variable names */
31 PyObject *ste_children; /* list of child ids */
53 PyAPI_FUNC(int) PyST_GetScope(PySTEntryObject *, PyObject *);
    [all...]
weakrefobject.h 22 PyObject *wr_object;
25 PyObject *wr_callback;
59 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
60 PyObject *callback);
61 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
62 PyObject *callback);
63 PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref)
    [all...]
py_curses.h 121 static PyObject *PyCurses_ ## X (PyObject *self) \
127 static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \
143 static PyObject *PyCurses_ ## X (PyObject *self) \
150 static PyObject *PyCurses_ ## X (PyObject *self) \
156 static PyObject *PyCurses_ ## X (PyObject *self)
    [all...]
boolobject.h 23 #define Py_False ((PyObject *) &_Py_ZeroStruct)
24 #define Py_True ((PyObject *) &_Py_TrueStruct)
31 PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
genobject.h 23 PyObject *gi_code;
26 PyObject *gi_weakreflist;
34 PyAPI_FUNC(PyObject *) PyGen_New(struct _frame *);
floatobject.h 43 PyAPI_FUNC(PyObject *) PyFloat_GetInfo(void);
45 /* Return Python float from string PyObject. Second argument ignored on
48 PyAPI_FUNC(PyObject *) PyFloat_FromString(PyObject*, char** junk);
51 PyAPI_FUNC(PyObject *) PyFloat_FromDouble(double);
55 PyAPI_FUNC(double) PyFloat_AsDouble(PyObject *);
126 PyAPI_FUNC(PyObject *) _PyFloat_FormatAdvanced(PyObject *obj,
133 PyAPI_FUNC(PyObject *) _Py_double_round(double x, int ndigits);
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /external/e2fsprogs/contrib/python-uuid/
uuid.c 5 static PyObject * _uuid_generate(PyObject *self, PyObject *args)
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.c 55 (PyObject*)0))
67 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
75 PyObject *obj;
97 typedef int (*getbufferproc)(PyObject *, Py_buffer *, int);
98 typedef void (*releasebufferproc)(PyObject *, Py_buffer *);
122 0 : _PyUnicode_Ready((PyObject *)(op)))
199 (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), (PyObject*)0) : \
201 (PyErr_Format(PyExc_TypeError, "'%.200s' object is unsliceable", (obj)->ob_type->tp_name), (PyObject*)0)))
293 typedef struct {PyObject **p; char *s; const long n; const char* encoding; const char is_unicode; const char is_str; const (…)
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python-proto2.cc 103 static PyObject* kPythonZero;
104 static PyObject* kint32min_py;
105 static PyObject* kint32max_py;
106 static PyObject* kuint32max_py;
107 static PyObject* kint64min_py;
108 static PyObject* kint64max_py;
109 static PyObject* kuint64max_py;
117 static void AddConstants(PyObject* module) {
148 static int CMessageInit(CMessage* self, PyObject *args, PyObject *kwds)
    [all...]

Completed in 2399 milliseconds

1 2 34 5 6