Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dimportdl.c44 name_len = PyUnicode_GetLength(name); in get_encoded_name()
D_warnings.c298 len = PyUnicode_GetLength(filename); in normalize_module()
743 len = PyUnicode_GetLength(*filename); in setup_context()
Dpythonrun.c819 PyUnicode_GetLength(s) != 0) in print_exception()
/external/python/cpython3/PC/
Dpython3.def693 PyUnicode_GetLength=python37.PyUnicode_GetLength
/external/python/cpython3/Modules/_io/
Dstringio.c727 value_len = PyUnicode_GetLength(value); in _io_StringIO___init___impl()
Dtextio.c2484 if (PyUnicode_GetLength(self->decoded_chars) < cookie.chars_to_skip) { in _io_TextIOWrapper_seek_impl()
2553 assert (self->decoded_chars == NULL || PyUnicode_GetLength(self->decoded_chars) == 0); in _io_TextIOWrapper_tell_impl()
/external/python/cpython3/Include/
Dunicodeobject.h785 PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
/external/python/cpython3/Modules/
D_csv.c241 len = PyUnicode_GetLength(src); in _set_char()
D_datetimemodule.c3111 if (PyUnicode_GetLength(format) == 0) in date_format()
4981 Py_ssize_t len = PyUnicode_GetLength(dtstr); in _sanitize_isoformat_str()
D_cursesmodule.c217 if (PyUnicode_GetLength(obj) != 1) { in PyCurses_ConvertToChtype()
/external/python/cpython3/Doc/data/
Drefcounts.dat2743 PyUnicode_GetLength:Py_ssize_t:::
2744 PyUnicode_GetLength:PyObject*:unicode:0:
/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
/external/python/cpython3/Doc/c-api/
Dunicode.rst571 .. c:function:: Py_ssize_t PyUnicode_GetLength(PyObject *unicode)
741 Please migrate to using :c:func:`PyUnicode_GetLength`.
/external/python/cpython3/Objects/
Dunicodeobject.c4010 PyUnicode_GetLength(PyObject *unicode) in PyUnicode_GetLength() function