Home
last modified time | relevance | path

Searched refs:Py_UNICODE_COPY (Results 1 – 3 of 3) sorted by relevance

/external/libmojo/third_party/markupsafe/
D_speedups.c100 Py_UNICODE_COPY(outp, inp, next_escp-inp); in escape_unicode()
105 Py_UNICODE_COPY(outp, escaped_chars_repl[*next_escp], delta_len); in escape_unicode()
111 Py_UNICODE_COPY(outp, inp, PyUnicode_GET_SIZE(in) - (inp - PyUnicode_AS_UNICODE(in))); in escape_unicode()
/external/python/cpython2/Objects/
Dunicodeobject.c437 Py_UNICODE_COPY(w->str, v->str, in _PyUnicode_Resize()
488 Py_UNICODE_COPY(unicode->str, u, size); in PyUnicode_FromUnicode()
984 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult), in PyUnicode_FromFormatV()
997 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); in PyUnicode_FromFormatV()
1007 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); in PyUnicode_FromFormatV()
1535 Py_UNICODE_COPY(*outptr, repptr, repsize); in unicode_decode_call_errorhandler()
4259 Py_UNICODE_COPY(p, in PyUnicode_DecodeCharmap()
5505 Py_UNICODE_COPY(u->str, self->str, self->length); in fixup()
5758 Py_UNICODE_COPY(res_p, PyUnicode_AS_UNICODE(item), itemlen); in PyUnicode_Join()
5761 Py_UNICODE_COPY(res_p, sep, seplen); in PyUnicode_Join()
[all …]
/external/python/cpython2/Include/
Dunicodeobject.h393 #define Py_UNICODE_COPY(target, source, length) \ macro