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

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/files/
file_path.h 319 // Mac uses UTF8, and since ASCII is a subset of that, it works there as well.
383 static FilePath FromUTF8Unsafe(StringPiece utf8);
  /external/libvterm/src/
vterm_internal.h 135 int utf8:1; member in struct:VTerm::__anon26337
  /external/nist-pkits/
extract-pkits-tests.pl 37 utf8::encode($delimiter);
  /external/python/cpython2/Lib/test/
test_multibytecodec_support.py 36 for native, utf8 in zip(*[StringIO(f).readlines()
39 self.assertEqual(u, utf8.decode('utf-8'))
370 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f:
371 utf8 = f.read()
372 return encoded, utf8
  /external/python/cpython3/Lib/test/
multibytecodec_support.py 44 for native, utf8 in zip(*tstring_lines):
46 self.assertEqual(u, utf8.decode('utf-8'))
382 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f:
383 utf8 = f.read()
384 return encoded, utf8
  /external/turbine/javatests/com/google/turbine/lower/
LowerTest.java 294 assertThat(pool.utf8(reader.u2())).isEqualTo("i"); // name
295 assertThat(pool.utf8(reader.u2())).isEqualTo("LA$I;"); // descriptor
299 String attributeName = pool.utf8(reader.u2());
303 signature = pool.utf8(reader.u2());
  /frameworks/base/tools/aapt/
StringPool.h 82 * If 'utf8' is true, strings will be encoded with UTF-8 instead of
85 explicit StringPool(bool utf8 = false);
  /frameworks/base/tools/aapt2/
StringPool.h 211 static bool Flatten(BigBuffer* out, const StringPool& pool, bool utf8, IDiagnostics* diag);
  /frameworks/minikin/tests/util/
UnicodeUtils.cpp 23 #include <unicode/utf8.h>
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multibytecodec_support.py 38 for native, utf8 in zip(*[StringIO(f).readlines()
41 self.assertEqual(u, utf8.decode('utf-8'))
372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f:
373 utf8 = f.read()
374 return encoded, utf8
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multibytecodec_support.py 38 for native, utf8 in zip(*[StringIO(f).readlines()
41 self.assertEqual(u, utf8.decode('utf-8'))
372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f:
373 utf8 = f.read()
374 return encoded, utf8
  /prebuilts/go/darwin-x86/src/bufio/
scan.go 11 "unicode/utf8"
286 var errorRune = []byte(string(utf8.RuneError))
300 if data[0] < utf8.RuneSelf {
305 _, width := utf8.DecodeRune(data)
312 // We know it's an error: we have width==1 and implicitly r==utf8.RuneError.
315 if !atEOF && !utf8.FullRune(data) {
390 r, width = utf8.DecodeRune(data[start:])
398 r, width = utf8.DecodeRune(data[i:])
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 12 "unicode/utf8"
279 if r < utf8.RuneSelf {
284 m, ok := b.tryGrowByReslice(utf8.UTFMax)
286 m = b.grow(utf8.UTFMax)
288 n = utf8.EncodeRune(b.buf[m:m+utf8.UTFMax], r)
359 if c < utf8.RuneSelf {
364 r, n := utf8.DecodeRune(b.buf[b.off:])
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
dumper.go 14 "unicode/utf8"
210 ch, _ := utf8.DecodeRuneInString(name)
  /prebuilts/go/darwin-x86/src/cmd/dist/
imports.go 17 "unicode/utf8"
30 return 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c >= utf8.RuneSelf
  /prebuilts/go/darwin-x86/src/cmd/go/internal/help/
help.go 17 "unicode/utf8"
170 r, n := utf8.DecodeRuneInString(s)
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 12 "unicode/utf8"
143 r1, _ := utf8.DecodeRuneInString(field)
  /prebuilts/go/darwin-x86/src/go/build/
deps_test.go 65 "strconv": {"L0", "unicode/utf8", "math"},
67 "unicode/utf8": {},
78 "unicode/utf8",
82 "bufio": {"L0", "unicode/utf8", "bytes"},
83 "bytes": {"L0", "unicode", "unicode/utf8"},
84 "path": {"L0", "unicode/utf8", "strings"},
85 "strings": {"L0", "unicode", "unicode/utf8"},
157 "internal/poll": {"L0", "internal/race", "syscall", "time", "unicode/utf16", "unicode/utf8", "internal/syscall/windows"},
  /prebuilts/go/linux-x86/src/bufio/
scan.go 11 "unicode/utf8"
286 var errorRune = []byte(string(utf8.RuneError))
300 if data[0] < utf8.RuneSelf {
305 _, width := utf8.DecodeRune(data)
312 // We know it's an error: we have width==1 and implicitly r==utf8.RuneError.
315 if !atEOF && !utf8.FullRune(data) {
390 r, width = utf8.DecodeRune(data[start:])
398 r, width = utf8.DecodeRune(data[i:])
  /prebuilts/go/linux-x86/src/bytes/
buffer.go 12 "unicode/utf8"
279 if r < utf8.RuneSelf {
284 m, ok := b.tryGrowByReslice(utf8.UTFMax)
286 m = b.grow(utf8.UTFMax)
288 n = utf8.EncodeRune(b.buf[m:m+utf8.UTFMax], r)
359 if c < utf8.RuneSelf {
364 r, n := utf8.DecodeRune(b.buf[b.off:])
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
dumper.go 14 "unicode/utf8"
210 ch, _ := utf8.DecodeRuneInString(name)
  /prebuilts/go/linux-x86/src/cmd/dist/
imports.go 17 "unicode/utf8"
30 return 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c >= utf8.RuneSelf
  /prebuilts/go/linux-x86/src/cmd/go/internal/help/
help.go 17 "unicode/utf8"
170 r, n := utf8.DecodeRuneInString(s)
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 12 "unicode/utf8"
143 r1, _ := utf8.DecodeRuneInString(field)
  /prebuilts/go/linux-x86/src/go/build/
deps_test.go 65 "strconv": {"L0", "unicode/utf8", "math"},
67 "unicode/utf8": {},
78 "unicode/utf8",
82 "bufio": {"L0", "unicode/utf8", "bytes"},
83 "bytes": {"L0", "unicode", "unicode/utf8"},
84 "path": {"L0", "unicode/utf8", "strings"},
85 "strings": {"L0", "unicode", "unicode/utf8"},
157 "internal/poll": {"L0", "internal/race", "syscall", "time", "unicode/utf16", "unicode/utf8", "internal/syscall/windows"},

Completed in 343 milliseconds

1 2 3 4 5 6 7 8 91011>>