HomeSort by relevance Sort by last modified time
    Searched refs:UTF (Results 126 - 150 of 307) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
scanner_test.go 268 {"foo\n\n\xff ", "invalid UTF-8 encoding", 5, 3},
321 {"package p\n\n\xef", "invalid UTF-8 encoding", 11, 3},
source.go 114 s.error("invalid UTF-8 encoding")
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/width/
width.go 73 // of its UTF-8 encoding.
80 // bytes of its UTF-8 encoding.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_plistlib.py 11 TESTDATA = """<?xml version="1.0" encoding="UTF-8"?>
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_plistlib.py 11 TESTDATA = """<?xml version="1.0" encoding="UTF-8"?>
  /prebuilts/go/darwin-x86/src/bufio/
scan.go 21 // lines, bytes, UTF-8-encoded runes, and space-delimited words. The
288 // UTF-8-encoded rune as a token. The sequence of runes returned is
290 // means that erroneous UTF-8 encodings translate to U+FFFD = "\xef\xbf\xbd".
303 // Fast path 2: Correct UTF-8 decode without error.
319 // We have a real UTF-8 encoding error. Return a properly encoded error rune
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml_test.go 18 <?xml version="1.0" encoding="UTF-8"?>
38 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)},
75 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)},
657 {`version="1.0" encoding="utf-8"`, [2]string{"1.0", "utf-8"}},
658 {`version="1.0" encoding='utf-8'`, [2]string{"1.0", "utf-8"}},
659 {`version="1.0" encoding='utf-8' `, [2]string{"1.0", "utf-8"}},
660 {`version="1.0" encoding=utf-8`, [2]string{"1.0", ""}}
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 156 // happens with ill-formed UTF-8.
238 // Append incomplete UTF-8 encoding.
471 if p == -1 { // incomplete UTF-8 encoding or non-starter bytes without a starter
475 if p+int(info.size) != i { // trailing non-starter bytes: illegal UTF-8
492 return i // boundary after an illegal UTF-8 encoding
  /prebuilts/go/linux-x86/src/bufio/
scan.go 21 // lines, bytes, UTF-8-encoded runes, and space-delimited words. The
288 // UTF-8-encoded rune as a token. The sequence of runes returned is
290 // means that erroneous UTF-8 encodings translate to U+FFFD = "\xef\xbf\xbd".
303 // Fast path 2: Correct UTF-8 decode without error.
319 // We have a real UTF-8 encoding error. Return a properly encoded error rune
  /prebuilts/go/linux-x86/src/encoding/xml/
xml_test.go 18 <?xml version="1.0" encoding="UTF-8"?>
38 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)},
75 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)},
657 {`version="1.0" encoding="utf-8"`, [2]string{"1.0", "utf-8"}},
658 {`version="1.0" encoding='utf-8'`, [2]string{"1.0", "utf-8"}},
659 {`version="1.0" encoding='utf-8' `, [2]string{"1.0", "utf-8"}},
660 {`version="1.0" encoding=utf-8`, [2]string{"1.0", ""}}
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 156 // happens with ill-formed UTF-8.
238 // Append incomplete UTF-8 encoding.
471 if p == -1 { // incomplete UTF-8 encoding or non-starter bytes without a starter
475 if p+int(info.size) != i { // trailing non-starter bytes: illegal UTF-8
492 return i // boundary after an illegal UTF-8 encoding
  /prebuilts/go/darwin-x86/src/syscall/
syscall_windows.go 21 // StringToUTF16 returns the UTF-16 encoding of the UTF-8 string s,
34 // UTF16FromString returns the UTF-16 encoding of the UTF-8 string
46 // UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,
58 // StringToUTF16Ptr returns pointer to the UTF-16 encoding of
59 // the UTF-8 string s, with a terminating NUL added. If s
66 // UTF16PtrFromString returns pointer to the UTF-16 encoding of
67 // the UTF-8 string s, with a terminating NUL added. If
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_windows.go 21 // StringToUTF16 returns the UTF-16 encoding of the UTF-8 string s,
34 // UTF16FromString returns the UTF-16 encoding of the UTF-8 string
46 // UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,
58 // StringToUTF16Ptr returns pointer to the UTF-16 encoding of
59 // the UTF-8 string s, with a terminating NUL added. If s
66 // UTF16PtrFromString returns pointer to the UTF-16 encoding of
67 // the UTF-8 string s, with a terminating NUL added. If
    [all...]
  /external/protobuf/js/binary/
decoder.js 897 * Reads and parses a UTF-8 encoded unicode string from the stream.
901 * though, as they are extremely rare: three UTF-8 bytes cover virtually all
902 * characters in common use (http://en.wikipedia.org/wiki/UTF-8).
917 // UTF-8 continuation mark. We are out of sync. This
921 } else if (c < 224) { // UTF-8 with two bytes.
924 } else if (c < 240) { // UTF-8 with three bytes.
940 * Reads and parses a UTF-8 encoded unicode string (with length prefix) from
  /development/build/
build_android_stubs.mk 58 $(hide) $(TARGET_JAVAC) -source 1.8 -target 1.8 -encoding UTF-8 -bootclasspath "" \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
__init__.py 118 encoding='utf-8',
124 encoding='utf-8', default=None, sort_keys=False, **kw):
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
195 encoding='utf-8', default=None, sort_keys=False, **kw):
225 ``encoding`` is the character encoding for str instances, default is UTF-8.
242 encoding == 'utf-8' and default is None and not sort_keys and not kw):
263 than utf-8 (e.g. latin-1), then an appropriate ``encoding`` name must
299 other than utf-8 (e.g. latin-1) then an appropriate ``encoding`` name
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
__init__.py 118 encoding='utf-8',
124 encoding='utf-8', default=None, **kw):
156 ``encoding`` is the character encoding for str instances, default is UTF-8.
170 encoding == 'utf-8' and default is None and not kw):
187 encoding='utf-8', default=None, **kw):
216 ``encoding`` is the character encoding for str instances, default is UTF-8.
230 encoding == 'utf-8' and default is None and not kw):
251 than utf-8 (e.g. latin-1), then an appropriate ``encoding`` name must
287 other than utf-8 (e.g. latin-1) then an appropriate ``encoding`` name
  /external/python/cpython2/Lib/json/
__init__.py 118 encoding='utf-8',
124 encoding='utf-8', default=None, sort_keys=False, **kw):
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
195 encoding='utf-8', default=None, sort_keys=False, **kw):
226 ``encoding`` is the character encoding for str instances, default is UTF-8.
243 encoding == 'utf-8' and default is None and not sort_keys and not kw):
264 than utf-8 (e.g. latin-1), then an appropriate ``encoding`` name must
300 other than utf-8 (e.g. latin-1) then an appropriate ``encoding`` name
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
__init__.py 118 encoding='utf-8',
124 encoding='utf-8', default=None, sort_keys=False, **kw):
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
195 encoding='utf-8', default=None, sort_keys=False, **kw):
225 ``encoding`` is the character encoding for str instances, default is UTF-8.
242 encoding == 'utf-8' and default is None and not sort_keys and not kw):
263 than utf-8 (e.g. latin-1), then an appropriate ``encoding`` name must
299 other than utf-8 (e.g. latin-1) then an appropriate ``encoding`` name
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
__init__.py 118 encoding='utf-8',
124 encoding='utf-8', default=None, sort_keys=False, **kw):
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
195 encoding='utf-8', default=None, sort_keys=False, **kw):
225 ``encoding`` is the character encoding for str instances, default is UTF-8.
242 encoding == 'utf-8' and default is None and not sort_keys and not kw):
263 than utf-8 (e.g. latin-1), then an appropriate ``encoding`` name must
299 other than utf-8 (e.g. latin-1) then an appropriate ``encoding`` name
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
source.go 114 s.error("invalid UTF-8 encoding")
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip_test.go 108 t.Fatalf("write utf-8: got %q, want %q", s, string(latin1))
127 {"invalid UTF-8 also \xffails", false},
  /prebuilts/go/darwin-x86/src/html/
escape.go 113 // Replace characters from Windows-1252 with UTF-8 equivalents.
  /prebuilts/go/darwin-x86/src/unicode/utf16/
utf16_test.go 127 // from http://en.wikipedia.org/wiki/UTF-16
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip_test.go 108 t.Fatalf("write utf-8: got %q, want %q", s, string(latin1))
127 {"invalid UTF-8 also \xffails", false},

Completed in 3682 milliseconds

1 2 3 4 56 7 8 91011>>