Home
last modified time | relevance | path

Searched refs:PyUnicode_AsUnicodeAndSize (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Include/cpython/
Dunicodeobject.h595 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicodeAndSize(
/third_party/python/Python/
Dgetargs.c1036 *p = PyUnicode_AsUnicodeAndSize(arg, &len); in convertsimple()
1051 *p = PyUnicode_AsUnicodeAndSize(arg, &len); in convertsimple()
/third_party/python/Doc/data/
Drefcounts.dat2426 PyUnicode_AsUnicodeAndSize:Py_UNICODE*:::
2427 PyUnicode_AsUnicodeAndSize:PyObject*:unicode:0:
2428 PyUnicode_AsUnicodeAndSize:Py_ssize_t*:size::
/third_party/python/PC/
Dwinreg.c1715 const wchar_t *value = PyUnicode_AsUnicodeAndSize(value_obj, &value_length); in winreg_SetValue_impl()
/third_party/python/Objects/
Dunicodeobject.c4269 PyUnicode_AsUnicodeAndSize(PyObject *unicode, Py_ssize_t *size) in PyUnicode_AsUnicodeAndSize() function
4310 return PyUnicode_AsUnicodeAndSize(unicode, NULL); in PyUnicode_AsUnicode()
4319 wstr = PyUnicode_AsUnicodeAndSize(unicode, &size); in _PyUnicode_AsUnicode()
7909 p = PyUnicode_AsUnicodeAndSize(substring, &size); in encode_code_page_strict()
/third_party/python/Modules/
Dposixmodule.c1212 wide = PyUnicode_AsUnicodeAndSize(o, &length); in path_converter()
1313 wide = PyUnicode_AsUnicodeAndSize(wo, &length); in path_converter()
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst3382 ``PyUnicode_AsUnicodeAndSize`` as deprecated in C. Remove
/third_party/python/Doc/whatsnew/
D3.9.rst1359 ``_PyUnicode_AsUnicode``, and :c:func:`PyUnicode_AsUnicodeAndSize` are
D3.3.rst2275 :c:func:`PyUnicode_AsUnicodeAndSize`: use :c:func:`PyUnicode_AsWideCharString`
/third_party/python/Doc/c-api/
Dunicode.rst733 .. c:function:: Py_UNICODE* PyUnicode_AsUnicodeAndSize(PyObject *unicode, Py_ssize_t *size)