Home
last modified time | relevance | path

Searched refs:PyUnicode_GET_SIZE (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/markupsafe/
D_speedups.c60 const Py_UNICODE *inp_end = PyUnicode_AS_UNICODE(in) + PyUnicode_GET_SIZE(in); in escape_unicode()
80 out = (PyUnicodeObject*)PyUnicode_FromUnicode(NULL, PyUnicode_GET_SIZE(in) + delta); in escape_unicode()
111 Py_UNICODE_COPY(outp, inp, PyUnicode_GET_SIZE(in) - (inp - PyUnicode_AS_UNICODE(in))); in escape_unicode()
/third_party/node/tools/inspector_protocol/markupsafe/
D_speedups.c60 const Py_UNICODE *inp_end = PyUnicode_AS_UNICODE(in) + PyUnicode_GET_SIZE(in); in escape_unicode()
80 out = (PyUnicodeObject*)PyUnicode_FromUnicode(NULL, PyUnicode_GET_SIZE(in) + delta); in escape_unicode()
111 Py_UNICODE_COPY(outp, inp, PyUnicode_GET_SIZE(in) - (inp - PyUnicode_AS_UNICODE(in))); in escape_unicode()
/third_party/python/Objects/stringlib/
Dunicodedefs.h21 #define STRINGLIB_LEN PyUnicode_GET_SIZE
/third_party/python/Include/cpython/
Dunicodeobject.h258 #define PyUnicode_GET_SIZE(op) \ macro
268 (PyUnicode_GET_SIZE(op) * Py_UNICODE_SIZE)
/third_party/python/Doc/data/
Drefcounts.dat2346 PyUnicode_GET_SIZE:Py_ssize_t:::
2347 PyUnicode_GET_SIZE:PyObject*:o:0:
/third_party/python/Modules/
D_testcapimodule.c1843 len != PyUnicode_GET_SIZE(obj)) in test_u_code()
1895 len1 != PyUnicode_GET_SIZE(obj)) in test_Z_code()
/third_party/python/Doc/c-api/
Dunicode.rst210 .. c:function:: Py_ssize_t PyUnicode_GET_SIZE(PyObject *o)
/third_party/python/Doc/whatsnew/
D3.3.rst2278 * :c:macro:`PyUnicode_GET_SIZE`, :c:func:`PyUnicode_GetSize`: use
/third_party/python/Objects/
Dunicodeobject.c12650 Py_ssize_t i = 0, len = PyUnicode_GET_SIZE(self); in PyUnicode_IsIdentifier()