Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/stringlib/
Dunicodedefs.h26 #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact
Dstring_format.h574 if (PyUnicode_CheckExact(fieldobj)) in render_field()
/external/python/cpython2/Modules/_sqlite/
Dstatement.c129 } else if (PyUnicode_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
210 || PyUnicode_CheckExact(obj) || PyBuffer_Check(obj)) { in _need_adapt()
/external/python/cpython2/Objects/
Dunicodeobject.c390 if (PyUnicode_CheckExact(unicode) && in unicode_dealloc()
1150 if (PyUnicode_CheckExact(obj)) { in PyUnicode_FromObject()
4146 if (PyUnicode_CheckExact(mapping)) { in PyUnicode_DecodeCharmap()
5507 if (!fixfct(u) && PyUnicode_CheckExact(self)) { in fixup()
5680 if (PyUnicode_CheckExact(item)) { in PyUnicode_Join()
5805 if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) { in pad()
6016 if (PyUnicode_CheckExact(self)) { in replace()
6130 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_center()
7037 if (self->length >= width && PyUnicode_CheckExact(self)) { in unicode_ljust()
7092 if (i == 0 && j == len && PyUnicode_CheckExact(self)) { in _PyUnicode_XStrip()
[all …]
Dcodeobject.c431 || PyUnicode_CheckExact(op) in _PyCode_ConstantKey()
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()
/external/python/cpython2/Include/
Dunicodeobject.h66 #define PyUnicode_CheckExact(op) 0 macro
429 #define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type) macro
/external/python/cpython2/Python/
Dmarshal.c356 else if (PyUnicode_CheckExact(v)) { in w_object()
Dbltinmodule.c2972 if (PyUnicode_CheckExact(strobj)) { in filterunicode()
DPython-ast.c609 if (!PyString_CheckExact(obj) && !PyUnicode_CheckExact(obj)) { in obj2ast_string()
/external/python/cpython2/Doc/c-api/
Dunicode.rst62 .. c:function:: int PyUnicode_CheckExact(PyObject *o)
/external/python/cpython2/Modules/
Dposixmodule.c758 if (PyUnicode_CheckExact(*param)) in convert_to_unicode()