/external/chromium_org/third_party/cython/src/Cython/Utility/ |
ExtensionTypes.c | 9 PyTypeObject* type = Py_TYPE(obj); 26 PyTypeObject* type = Py_TYPE(obj); 45 PyTypeObject* type = Py_TYPE(obj);
|
ObjectHandling.c | 100 iternext = Py_TYPE(iter)->tp_iternext; 147 iternextfunc iternext = Py_TYPE(iterator)->tp_iternext; 154 "%.200s object is not an iterator", Py_TYPE(iterator)->tp_name); 317 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; 378 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; 438 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; 492 PySequenceMethods* ms = Py_TYPE(obj)->tp_as_sequence; 535 mp = Py_TYPE(obj)->tp_as_mapping; 594 "'%.200s' object is unsliceable", Py_TYPE(obj)->tp_name); 597 Py_TYPE(obj)->tp_name, value ? "assignment" : "deletion") [all...] |
Generator.c | 14 retval = Py_TYPE(source_gen)->tp_iternext(source_gen); 70 #define __Pyx_Generator_CheckExact(obj) (Py_TYPE(obj) == __pyx_GeneratorType) 264 ret = Py_TYPE(yf)->tp_iternext(yf); 472 Py_TYPE(gen)->tp_del(self); 541 --Py_TYPE(self)->tp_frees; 542 --Py_TYPE(self)->tp_allocs;
|
Builtins.c | 115 Py_TYPE(globals)->tp_name); 153 Py_TYPE(o)->tp_name); 204 PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "str", Py_TYPE(s)->tp_name);
|
Exceptions.c | 116 type = (PyObject*) Py_TYPE(type); 156 type = (PyObject*) Py_TYPE(value); 161 instance_class = (PyObject*) Py_TYPE(value); 194 type, Py_TYPE(value));
|
FunctionArguments.c | 11 name, type->tp_name, Py_TYPE(obj)->tp_name); 23 if (likely(Py_TYPE(obj) == type)) return 1;
|
Optimize.c | 92 if (Py_TYPE(L) == &PySet_Type) { 391 PyNumberMethods *nb = Py_TYPE(obj)->tp_as_number; 397 Py_TYPE(float_value)->tp_name);
|
TypeConversion.c | 248 m = Py_TYPE(x)->tp_as_number; 272 name, name, Py_TYPE(res)->tp_name); 344 PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "a mapping", Py_TYPE(o)->tp_name);
|
CythonFunction.c | 535 type = (PyObject *)(Py_TYPE(obj)); 537 type, (PyObject *)(Py_TYPE(type))); [all...] |
ModuleSetupCode.c | 57 "expected index value, got %.200s", Py_TYPE(o)->tp_name), \ 72 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 223 #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type)
|
Buffer.c | 137 PyErr_Format(PyExc_TypeError, "'%.200s' does not have the buffer interface", Py_TYPE(obj)->tp_name);
|
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
array.pxd | 53 from cpython.ref cimport PyTypeObject, Py_TYPE 132 op = newarrayobject(Py_TYPE(template), length, template.ob_descr) 139 op = newarrayobject(Py_TYPE(self), Py_SIZE(self), self.ob_descr)
|
ref.pxd | 6 cdef PyTypeObject *Py_TYPE(object)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
tracer.c | 22 #ifndef Py_TYPE 23 #define Py_TYPE(o) (((PyObject*)(o))->ob_type) 177 Py_TYPE(self)->tp_free((PyObject*)self);
|
/external/chromium_org/third_party/simplejson/ |
_speedups.c | 18 #if PY_VERSION_HEX < 0x02060000 && !defined(Py_TYPE) 19 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 44 #define PyScanner_CheckExact(op) (Py_TYPE(op) == &PyScannerType) 46 #define PyEncoder_CheckExact(op) (Py_TYPE(op) == &PyEncoderType) 946 Py_TYPE(pystr)->tp_name); 972 Py_TYPE(pystr)->tp_name); 982 Py_TYPE(self)->tp_free(self); [all...] |
/external/chromium_org/third_party/bintrees/bintrees/ |
cwalker.c | 54 "expected index value, got %.200s", Py_TYPE(o)->tp_name), \ 68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 163 #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) 726 else if (unlikely(Py_TYPE(((PyObject *)__pyx_v_self))->tp_dictoffset != 0)) { [all...] |
qavltree.c | 54 "expected index value, got %.200s", Py_TYPE(o)->tp_name), \ 68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 163 #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) 534 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; [all...] |
qbintree.c | 54 "expected index value, got %.200s", Py_TYPE(o)->tp_name), \ 68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 163 #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) 534 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; [all...] |
qrbtree.c | 54 "expected index value, got %.200s", Py_TYPE(o)->tp_name), \ 68 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 163 #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) 534 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; [all...] |