HomeSort by relevance Sort by last modified time
    Searched refs:surrogateescape (Results 1 - 4 of 4) sorted by null

  /external/python/cpython3/Python/
fileutils.c 204 int raw_malloc, int surrogateescape)
231 else if (surrogateescape && 0xdc80 <= ch && ch <= 0xdcff) {
273 const char **reason, int surrogateescape)
295 if (!surrogateescape) {
320 const char **reason, int surrogateescape)
368 /* Conversion failed. Fall back to escaping with surrogateescape. */
402 if (!surrogateescape) {
415 if (!surrogateescape) {
420 byte sequence with surrogateescape. */
451 return decode_ascii(arg, wstr, wlen, reason, surrogateescape);
    [all...]
  /external/python/cpython3/Include/
fileutils.h 29 int surrogateescape);
37 int surrogateescape);
49 int surrogateescape);
57 int surrogateescape);
  /external/python/cpython3/Lib/test/
test_codecs.py 804 (b'[\x80\xff]', 'surrogateescape', '[\udc80\udcff]'),
816 self.assertEqual("[\uDC80]".encode(self.encoding, "surrogateescape"),
820 "[\uDC80\uD800\uDFFF]".encode(self.encoding, "surrogateescape")
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 372 if (strcmp(errors, "surrogateescape") == 0) {
3390 int surrogateescape; local
3610 int surrogateescape; local
    [all...]

Completed in 126 milliseconds