Home
last modified time | relevance | path

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

/third_party/python/Python/
Dimportdl.c44 name_len = PyUnicode_GetLength(name); in get_encoded_name()
D_warnings.c439 len = PyUnicode_GetLength(filename); in normalize_module()
Dpythonrun.c1009 PyUnicode_GetLength(s) != 0) in print_exception()
/third_party/python/Include/
Dunicodeobject.h169 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/third_party/python/Modules/
D_csv.c246 Py_ssize_t len = PyUnicode_GetLength(src); in _set_char_or_none()
279 Py_ssize_t len = PyUnicode_GetLength(src); in _set_char()
D_datetimemodule.c3203 if (PyUnicode_GetLength(format) == 0) in date_format()
5210 Py_ssize_t len = PyUnicode_GetLength(dtstr); in _sanitize_isoformat_str()
D_cursesmodule.c238 if (PyUnicode_GetLength(obj) != 1) { in PyCurses_ConvertToChtype()
/third_party/python/Modules/_io/
Dstringio.c728 value_len = PyUnicode_GetLength(value); in _io_StringIO___init___impl()
Dtextio.c2617 if (PyUnicode_GetLength(self->decoded_chars) < cookie.chars_to_skip) { in _io_TextIOWrapper_seek_impl()
2686 assert (self->decoded_chars == NULL || PyUnicode_GetLength(self->decoded_chars) == 0); in _io_TextIOWrapper_tell_impl()
/third_party/python/Doc/data/
Dstable_abi.dat743 function,PyUnicode_GetLength,3.7,
Drefcounts.dat2761 PyUnicode_GetLength:Py_ssize_t:::
2762 PyUnicode_GetLength:PyObject*:unicode:0:
/third_party/python/PC/
Dpython3dll.c668 EXPORT_FUNC(PyUnicode_GetLength)
/third_party/python/Misc/
Dstable_abi.txt1920 function PyUnicode_GetLength
/third_party/python/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.rst2206 * ``Py_UNICODE_strlen``: use :c:func:`PyUnicode_GetLength` or
/third_party/python/Doc/c-api/
Dunicode.rst586 .. c:function:: Py_ssize_t PyUnicode_GetLength(PyObject *unicode)
/third_party/python/Objects/
Dunicodeobject.c4348 PyUnicode_GetLength(PyObject *unicode) in PyUnicode_GetLength() function