Home
last modified time | relevance | path

Searched refs:PyString_Type (Results 1 – 19 of 19) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dstringobject.h56 PyAPI_DATA(PyTypeObject) PyString_Type;
60 #define PyString_CheckExact(op) (Py_TYPE(op) == &PyString_Type)
Dbytesobject.h2 #define PyBytes_Type PyString_Type
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dstringobject.h56 PyAPI_DATA(PyTypeObject) PyString_Type;
60 #define PyString_CheckExact(op) (Py_TYPE(op) == &PyString_Type)
Dbytesobject.h2 #define PyBytes_Type PyString_Type
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmodule.c159 || type == &PyString_Type || type == &PyUnicode_Type || type == &PyBuffer_Type) { in module_register_adapter()
Dcursor.c393 } else if (self->connection->text_factory == (PyObject*)&PyString_Type) { in _pysqlite_fetch_one_row()
Dconnection.c1453 …if (!PyArg_ParseTuple(args, "O!O:create_collation(name, callback)", &PyString_Type, &name, &callab… in pysqlite_connection_create_collation()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dexceptions.c1573 &PyString_Type, &self->encoding, in UnicodeError_init()
1577 &PyString_Type, &self->reason)) { in UnicodeError_init()
1729 kwds, &PyString_Type); in UnicodeDecodeError_init()
1822 &PyString_Type, &self->reason)) { in UnicodeTranslateError_init()
Dstringobject.c91 PyObject_INIT_VAR(op, &PyString_Type, size); in PyString_FromStringAndSize()
146 PyObject_INIT_VAR(op, &PyString_Type, size); in PyString_FromString()
1064 PyObject_INIT_VAR(op, &PyString_Type, size); in string_concat()
1106 PyObject_INIT_VAR(op, &PyString_Type, size); in string_repeat()
3703 if (type != &PyString_Type) in string_new()
3718 assert(PyType_IsSubtype(type, &PyString_Type)); in str_subtype_new()
3719 tmp = string_new(&PyString_Type, args, kwds); in str_subtype_new()
3813 PyTypeObject PyString_Type = { variable
Dobject.c2086 if (PyType_Ready(&PyString_Type) < 0) in _Py_ReadyTypes()
Dtypeobject.c3743 else if (PyType_IsSubtype(base, &PyString_Type))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dexceptions.c1569 &PyString_Type, &self->encoding, in UnicodeError_init()
1573 &PyString_Type, &self->reason)) { in UnicodeError_init()
1721 kwds, &PyString_Type); in UnicodeDecodeError_init()
1810 &PyString_Type, &self->reason)) { in UnicodeTranslateError_init()
Dstringobject.c91 PyObject_INIT_VAR(op, &PyString_Type, size); in PyString_FromStringAndSize()
146 PyObject_INIT_VAR(op, &PyString_Type, size); in PyString_FromString()
1059 PyObject_INIT_VAR(op, &PyString_Type, size); in string_concat()
1101 PyObject_INIT_VAR(op, &PyString_Type, size); in string_repeat()
3682 if (type != &PyString_Type) in string_new()
3697 assert(PyType_IsSubtype(type, &PyString_Type)); in str_subtype_new()
3698 tmp = string_new(&PyString_Type, args, kwds); in str_subtype_new()
3792 PyTypeObject PyString_Type = { variable
Dobject.c2079 if (PyType_Ready(&PyString_Type) < 0) in _Py_ReadyTypes()
Dtypeobject.c3708 else if (PyType_IsSubtype(base, &PyString_Type))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dbltinmodule.c2703 SETBUILTIN("bytes", &PyString_Type); in _PyBuiltin_Init()
2723 SETBUILTIN("str", &PyString_Type); in _PyBuiltin_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dbltinmodule.c2692 SETBUILTIN("bytes", &PyString_Type); in _PyBuiltin_Init()
2712 SETBUILTIN("str", &PyString_Type); in _PyBuiltin_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
DcPickle.c2589 if ((type == &PyString_Type) && (PyString_GET_SIZE(args) < 2)) { in save()
2620 if (type == &PyString_Type) { in save()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
DcPickle.c2621 if ((type == &PyString_Type) && (PyString_GET_SIZE(args) < 2)) { in save()
2652 if (type == &PyString_Type) { in save()