Home
last modified time | relevance | path

Searched refs:PyUnicode_CheckExact (Results 1 – 20 of 20) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
Dunicodedefs.h26 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
Dstring_format.h577 if (PyUnicode_CheckExact(fieldobj)) in render_field()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
Dunicodedefs.h26 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
Dstring_format.h574 if (PyUnicode_CheckExact(fieldobj)) in render_field()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dstatement.c126 } else if (PyUnicode_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
203 || PyUnicode_CheckExact(obj) || PyBuffer_Check(obj)) { in _need_adapt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dunicodeobject.h66 #define PyUnicode_CheckExact(op) 0 macro
429 #define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dunicodeobject.h66 #define PyUnicode_CheckExact(op) 0 macro
429 #define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c377 if (PyUnicode_CheckExact(unicode) && in unicode_dealloc()
1090 if (PyUnicode_CheckExact(obj)) { in PyUnicode_FromObject()
4082 if (PyUnicode_CheckExact(mapping)) { in PyUnicode_DecodeCharmap()
5405 if (!fixfct(u) && PyUnicode_CheckExact(self)) { in fixup()
5578 if (PyUnicode_CheckExact(item)) { in PyUnicode_Join()
5703 if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) { in pad()
5914 if (PyUnicode_CheckExact(self)) { in replace()
6028 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_center()
6916 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_ljust()
6971 if (i == 0 && j == len && PyUnicode_CheckExact(self)) { in _PyUnicode_XStrip()
[all …]
Dobject.c418 if (PyUnicode_CheckExact(v)) { in _PyObject_Str()
486 } else if (PyUnicode_CheckExact(v)) { in PyObject_Unicode()
Dstringobject.c1593 if (PyString_CheckExact(item) || PyUnicode_CheckExact(item)) { in string_join()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dunicodeobject.c390 if (PyUnicode_CheckExact(unicode) && in unicode_dealloc()
1151 if (PyUnicode_CheckExact(obj)) { in PyUnicode_FromObject()
4139 if (PyUnicode_CheckExact(mapping)) { in PyUnicode_DecodeCharmap()
5500 if (!fixfct(u) && PyUnicode_CheckExact(self)) { in fixup()
5673 if (PyUnicode_CheckExact(item)) { in PyUnicode_Join()
5798 if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) { in pad()
6009 if (PyUnicode_CheckExact(self)) { in replace()
6123 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_center()
7024 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_ljust()
7079 if (i == 0 && j == len && PyUnicode_CheckExact(self)) { in _PyUnicode_XStrip()
[all …]
Dobject.c418 if (PyUnicode_CheckExact(v)) { in _PyObject_Str()
486 } else if (PyUnicode_CheckExact(v)) { in PyObject_Unicode()
Dstringobject.c1610 if (PyString_CheckExact(item) || PyUnicode_CheckExact(item)) { in string_join()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dmarshal.c344 else if (PyUnicode_CheckExact(v)) { in w_object()
Dbltinmodule.c2945 if (PyUnicode_CheckExact(strobj)) { in filterunicode()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
Dmarshal.c362 else if (PyUnicode_CheckExact(v)) { in w_object()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
Dmarshal.c344 else if (PyUnicode_CheckExact(v)) { in w_object()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dbltinmodule.c2961 if (PyUnicode_CheckExact(strobj)) { in filterunicode()
DPython-ast.c609 if (!PyString_CheckExact(obj) && !PyUnicode_CheckExact(obj)) { in obj2ast_string()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dposixmodule.c591 if (PyUnicode_CheckExact(*param)) in convert_to_unicode()