Home
last modified time | relevance | path

Searched refs:PyUnicode_GetLength (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/external/python/cpython3/Python/
Dimportdl.c46 name_len = PyUnicode_GetLength(name); in get_encoded_name()
D_warnings.c452 len = PyUnicode_GetLength(filename); in normalize_module()
Dpythonrun.c1088 if (!PyUnicode_Check(s) || PyUnicode_GetLength(s) != 0) { in print_exception_message()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dunicodeobject.h169 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dunicodeobject.h169 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/aosp_15_r20/external/python/cpython3/Include/
Dunicodeobject.h169 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dunicodeobject.h169 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dunicodeobject.h169 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/aosp_15_r20/external/python/cpython3/Modules/
D_csv.c257 Py_ssize_t len = PyUnicode_GetLength(src); in _set_char_or_none()
287 Py_ssize_t len = PyUnicode_GetLength(src); in _set_char()
D_cursesmodule.c243 if (PyUnicode_GetLength(obj) != 1) { in PyCurses_ConvertToChtype()
D_datetimemodule.c3284 if (PyUnicode_GetLength(format) == 0) in date_format()
5275 Py_ssize_t len = PyUnicode_GetLength(dtstr); in _sanitize_isoformat_str()
/aosp_15_r20/external/python/cpython3/Modules/_io/
Dstringio.c728 value_len = PyUnicode_GetLength(value); in _io_StringIO___init___impl()
Dtextio.c2587 if (PyUnicode_GetLength(self->decoded_chars) < cookie.chars_to_skip) { in _io_TextIOWrapper_seek_impl()
2656 assert (self->decoded_chars == NULL || PyUnicode_GetLength(self->decoded_chars) == 0); in _io_TextIOWrapper_tell_impl()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c681 EXPORT_FUNC(PyUnicode_GetLength)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat763 function,PyUnicode_GetLength,3.7,,
Drefcounts.dat2698 PyUnicode_GetLength:Py_ssize_t:::
2699 PyUnicode_GetLength:PyObject*:unicode:0:
Dpython3.11.abi824 …<elf-symbol name='PyUnicode_GetLength' type='func-type' binding='global-binding' visibility='defau…
10706PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='Objects/unicodeobject.c' line='4…
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.3.rst2183 * :c:func:`PyUnicode_GetLength`, :c:macro:`PyUnicode_GET_LENGTH`
2279 :c:macro:`PyUnicode_GET_LENGTH` or :c:func:`PyUnicode_GetLength`
2290 * :c:macro:`Py_UNICODE_strlen`: use :c:func:`PyUnicode_GetLength` or
D3.10.rst2213 * ``Py_UNICODE_strlen``: use :c:func:`PyUnicode_GetLength` or
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml2004 [function.PyUnicode_GetLength]
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dunicode.rst602 .. c:function:: Py_ssize_t PyUnicode_GetLength(PyObject *unicode)
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c4278 PyUnicode_GetLength(PyObject *unicode) in PyUnicode_GetLength() function