Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_winapi.c840 size = PyUnicode_AsWideChar(key, NULL, 0); in getenvironment()
848 size = PyUnicode_AsWideChar(value, NULL, 0); in getenvironment()
868 Py_ssize_t size = PyUnicode_AsWideChar(key, p, end - p); in getenvironment()
872 size = PyUnicode_AsWideChar(value, p, end - p); in getenvironment()
Darraymodule.c261 Py_ssize_t len = PyUnicode_AsWideChar(u, NULL, 0); in u_setitem()
269 len = PyUnicode_AsWideChar(u, &w, 1); in u_setitem()
1733 Py_ssize_t ustr_length = PyUnicode_AsWideChar(ustr, NULL, 0); in array_array_fromunicode_impl()
1743 PyUnicode_AsWideChar( in array_array_fromunicode_impl()
D_cursesmodule.c314 if (PyUnicode_AsWideChar(obj, buffer, 2) != 1) { in PyCurses_ConvertToCchar_t()
4445 if (PyUnicode_AsWideChar(obj, buffer, 2) != 1) { in PyCurses_ConvertToWchar_t()
D_testcapimodule.c2004 size = PyUnicode_AsWideChar(unicode, buffer, buflen); in unicode_aswidechar()
/third_party/python/Include/
Dunicodeobject.h302 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
/third_party/python/Modules/_ctypes/
Dcfield.c1152 len = PyUnicode_AsWideChar(value, chars, 2); in u_set()
1210 Py_ssize_t size = PyUnicode_AsWideChar(value, NULL, 0); in U_set()
1224 if (PyUnicode_AsWideChar(value, (wchar_t *)ptr, length) == -1) { in U_set()
D_ctypes.c1388 Py_ssize_t len = PyUnicode_AsWideChar(value, NULL, 0); in WCharArray_set_value()
1399 if (PyUnicode_AsWideChar(value, (wchar_t *)self->b_ptr, size) < 0) { in WCharArray_set_value()
/third_party/boost/libs/python/src/converter/
Dbuiltin_converters.cpp457 int err = PyUnicode_AsWideChar( in extract()
/third_party/python/PC/
Dwinreg.c657 len = PyUnicode_AsWideChar(t, NULL, 0); in Py2Reg()
681 len = PyUnicode_AsWideChar(t, P, size); in Py2Reg()
Dpython3dll.c622 EXPORT_FUNC(PyUnicode_AsWideChar)
/third_party/python/Doc/data/
Drefcounts.dat2445 PyUnicode_AsWideChar:Py_ssize_t:::
2446 PyUnicode_AsWideChar:PyObject*:*unicode:0:
2447 PyUnicode_AsWideChar:wchar_t*:w::
2448 PyUnicode_AsWideChar:Py_ssize_t:size::
Dstable_abi.dat697 function,PyUnicode_AsWideChar,3.2,
/third_party/python/Doc/c-api/
Dunicode.rst718 :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`,
745 :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`,
952 .. c:function:: Py_ssize_t PyUnicode_AsWideChar(PyObject *unicode, wchar_t *w, Py_ssize_t size)
/third_party/python/Misc/
Dstable_abi.txt1376 function PyUnicode_AsWideChar
DHISTORY4753 - Issue #18556: Check the return type of PyUnicode_AsWideChar() in ctype's
11885 - Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace
/third_party/python/Objects/
Dunicodeobject.c3306 PyUnicode_AsWideChar(PyObject *unicode, in PyUnicode_AsWideChar() function
4529 repwlen = PyUnicode_AsWideChar(repunicode, NULL, 0); in unicode_decode_call_errorhandler_wchar()
4553 PyUnicode_AsWideChar(repunicode, *buf + *outpos, repwlen); in unicode_decode_call_errorhandler_wchar()
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst8977 :c:func:`PyUnicode_AsWideChar` and :c:func:`PyUnicode_AsWideCharString` no