HomeSort by relevance Sort by last modified time
    Searched refs:utf8 (Results 351 - 375 of 624) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/archive/zip/
writer.go 14 "unicode/utf8"
228 r, size := utf8.DecodeRuneInString(s[i:])
237 if !utf8.ValidRune(r) || (r == utf8.RuneError && size == 1) {
reader_test.go 325 Name: "utf8-7zip.zip",
336 Name: "utf8-infozip.zip",
352 Name: "utf8-osx.zip",
365 Name: "utf8-winrar.zip",
376 Name: "utf8-winzip.zip",
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
inl_test.go 110 "unicode/utf8": {
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
gccgoinstallation_test.go 143 "unicode/utf8",
  /prebuilts/go/linux-x86/src/mime/
type.go 115 const utf8RuneSelf = 0x80 // from utf8 package, but not importing it.
  /prebuilts/go/linux-x86/src/text/template/
funcs.go 16 "unicode/utf8"
579 if c < utf8.RuneSelf {
601 r, size := utf8.DecodeRune(b[i:])
630 return r < ' ' || utf8.RuneSelf <= r
  /prebuilts/go/linux-x86/test/stress/
parsego.go 218 "unicode/utf8",
  /build/blueprint/
scope.go 21 "unicode/utf8"
118 first, _ := utf8.DecodeRuneInString(varName)
  /external/libvterm/src/
vterm.c 108 vt->mode.utf8 = is_utf8;
  /external/python/cpython3/Lib/
poplib.py 74 UTF8 utf8()
352 def utf8(self): member in class:POP3
355 return self._shortcmd('UTF8')
  /frameworks/base/libs/androidfw/
ApkAssets.cpp 25 #include "android-base/utf8.h"
82 unique_fd fd(base::utf8::open(path.c_str(), O_RDONLY | O_BINARY | O_CLOEXEC));
  /prebuilts/go/darwin-x86/src/cmd/pack/
pack_test.go 19 "unicode/utf8"
42 if c == utf8.RuneError {
  /prebuilts/go/darwin-x86/src/go/doc/
example.go 18 "unicode/utf8"
137 rune, _ := utf8.DecodeRuneInString(name[len(prefix):])
  /prebuilts/go/linux-x86/src/cmd/pack/
pack_test.go 19 "unicode/utf8"
42 if c == utf8.RuneError {
  /prebuilts/go/linux-x86/src/go/doc/
example.go 18 "unicode/utf8"
137 rune, _ := utf8.DecodeRuneInString(name[len(prefix):])
  /system/core/base/
file.cpp 34 #include "android-base/utf8.h"
49 using namespace android::base::utf8;
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 890 String value = streamHeaders.get(i).value.utf8();
899 httpHeaders.add(name.utf8(), s);
902 httpHeaders.add(name.utf8(), value);
    [all...]
  /external/icu/icu4c/source/test/intltest/
intltest.cpp 1217 UBool utf8 = FALSE; local
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
encode.go 27 "unicode/utf8"
880 if b := s[i]; b < utf8.RuneSelf {
915 c, size := utf8.DecodeRuneInString(s[i:])
916 if c == utf8.RuneError && size == 1 {
955 if b := s[i]; b < utf8.RuneSelf {
990 c, size := utf8.DecodeRune(s[i:])
991 if c == utf8.RuneError && size == 1 {
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
encode.go 27 "unicode/utf8"
880 if b := s[i]; b < utf8.RuneSelf {
915 c, size := utf8.DecodeRuneInString(s[i:])
916 if c == utf8.RuneError && size == 1 {
955 if b := s[i]; b < utf8.RuneSelf {
990 c, size := utf8.DecodeRune(s[i:])
991 if c == utf8.RuneError && size == 1 {
    [all...]
  /prebuilts/go/darwin-x86/src/archive/zip/
reader_test.go 325 Name: "utf8-7zip.zip",
336 Name: "utf8-infozip.zip",
352 Name: "utf8-osx.zip",
365 Name: "utf8-winrar.zip",
376 Name: "utf8-winzip.zip",
  /prebuilts/go/darwin-x86/src/bytes/
bytes_test.go 16 "unicode/utf8"
380 {"a?b?c?d\xe2\x98?\xff?\xed\xa0\x80", utf8.MaxRune + 1, -1},
553 utf8.EncodeRune(buf[n-3:], '?')
1042 return utf8.MaxRune + 1
1255 return r != utf8.RuneError
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
bytes_test.go 16 "unicode/utf8"
380 {"a?b?c?d\xe2\x98?\xff?\xed\xa0\x80", utf8.MaxRune + 1, -1},
553 utf8.EncodeRune(buf[n-3:], '?')
1042 return utf8.MaxRune + 1
1255 return r != utf8.RuneError
    [all...]
  /prebuilts/go/darwin-x86/src/text/template/parse/
lex.go 11 "unicode/utf8"
127 r, w := utf8.DecodeRuneInString(l.input[l.pos:])
514 if rd, _ := utf8.DecodeRuneInString(l.rightDelim); rd == r {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 13 "unicode/utf8"
557 for ; p >= 0 && !utf8.RuneStart(buf[p]); p-- {
601 var buf [maxBufferSize * utf8.UTFMax]byte

Completed in 859 milliseconds

<<11121314151617181920>>