Home
last modified time | relevance | path

Searched refs:PyCell_Type (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dcellobject.h14 PyAPI_DATA(PyTypeObject) PyCell_Type;
16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dcellobject.h14 PyAPI_DATA(PyTypeObject) PyCell_Type;
16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dcellobject.c10 op = (PyCellObject *)PyObject_GC_New(PyCellObject, &PyCell_Type); in PyCell_New()
114 PyTypeObject PyCell_Type = { variable
Dobject.c2210 if (PyType_Ready(&PyCell_Type) < 0) in _Py_ReadyTypes()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dcellobject.c10 op = (PyCellObject *)PyObject_GC_New(PyCellObject, &PyCell_Type); in PyCell_New()
114 PyTypeObject PyCell_Type = { variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmodule.c399 Py_INCREF((PyObject*)&PyCell_Type); in init_sqlite3()
400 pysqlite_OptimizedUnicode = (PyObject*)&PyCell_Type; in init_sqlite3()