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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
nps400-6.s 166 csma_like_test utf8
167 csma_like_test utf8.f
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c 1076 PyObject *wide, *utf8; local
1082 utf8 = PyUnicode_FromString("\xf4\x8a\xaf\x8d");
    [all...]
  /external/libvterm/src/
parser.c 302 if(c == 0x07 || (c == 0x9c && !vt->mode.utf8)) {
309 if(c >= 0x80 && c < 0xa0 && !vt->mode.utf8) {
state.c 8 #include "utf8.h"
215 state->vt->mode.utf8 ? &state->encoding_utf8 :
455 char utf8[18]; size_t len = 0; local
460 len += fill_utf8((code | modifiers) + 0x20, utf8 + len);
461 len += fill_utf8(col + 0x21, utf8 + len);
462 len += fill_utf8(row + 0x21, utf8 + len);
463 utf8[len] = 0;
465 vterm_push_output_sprintf_ctrl(state->vt, C1_CSI, "M%s", utf8);
    [all...]
  /external/skia/tools/fonts/
SkTestScalerContext.cpp 143 auto utf8 = (const char*)chars; local
150 case kUTF8_Encoding: ch = SkUTF8_NextUnichar(&utf8 ); break;
  /external/skqp/tools/
SkTestScalerContext.cpp 143 auto utf8 = (const char*)chars; local
150 case kUTF8_Encoding: ch = SkUTF8_NextUnichar(&utf8 ); break;
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
OperationBuilder.java 299 Charset utf8 = Charset.forName("UTF-8"); local
302 objects[i] = value[i].getBytes(utf8);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
scanner.go 19 "unicode/utf8"
69 if isLetter(c) || c >= utf8.RuneSelf && s.isIdentRune(c, true) {
329 if c >= utf8.RuneSelf {
360 case c >= utf8.RuneSelf:
  /prebuilts/go/darwin-x86/src/go/doc/
comment.go 15 "unicode/utf8"
223 r, _ := utf8.DecodeRuneInString(line)
229 r, _ = utf8.DecodeLastRuneInString(line)
463 w := utf8.RuneCountInString(f)
  /prebuilts/go/darwin-x86/src/mime/
encodedword.go 16 "unicode/utf8"
94 _, runeLen = utf8.DecodeRuneInString(s[i:])
128 _, runeLen = utf8.DecodeRuneInString(s[i:])
335 if c >= utf8.RuneSelf {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
scanner.go 19 "unicode/utf8"
69 if isLetter(c) || c >= utf8.RuneSelf && s.isIdentRune(c, true) {
329 if c >= utf8.RuneSelf {
360 case c >= utf8.RuneSelf:
  /prebuilts/go/linux-x86/src/go/doc/
comment.go 15 "unicode/utf8"
223 r, _ := utf8.DecodeRuneInString(line)
229 r, _ = utf8.DecodeLastRuneInString(line)
463 w := utf8.RuneCountInString(f)
  /prebuilts/go/linux-x86/src/mime/
encodedword.go 16 "unicode/utf8"
94 _, runeLen = utf8.DecodeRuneInString(s[i:])
128 _, runeLen = utf8.DecodeRuneInString(s[i:])
335 if c >= utf8.RuneSelf {
  /external/flatbuffers/js/
flatbuffers.js 742 var utf8 = s;
744 var utf8 = [];
761 utf8.push(codePoint);
764 utf8.push(((codePoint >> 6) & 0x1F) | 0xC0);
767 utf8.push(((codePoint >> 12) & 0x0F) | 0xE0);
769 utf8.push(
773 utf8.push(((codePoint >> 6) & 0x3F) | 0x80);
775 utf8.push((codePoint & 0x3F) | 0x80);
781 this.startVector(1, utf8.length, 1);
782 this.bb.setPosition(this.space -= utf8.length)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader_test.go 12 "unicode/utf8"
362 Comma: utf8.RuneError,
374 Comment: utf8.RuneError,
  /prebuilts/go/darwin-x86/src/encoding/json/
decode.go 21 "unicode/utf8"
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
html.go 11 "unicode/utf8"
145 // width will not be utf8.Runelen(r) and we will overrun the buffer.
146 r, w = utf8.DecodeRuneInString(s[i:])
  /prebuilts/go/linux-x86/src/encoding/csv/
reader_test.go 12 "unicode/utf8"
362 Comma: utf8.RuneError,
374 Comment: utf8.RuneError,
  /prebuilts/go/linux-x86/src/encoding/json/
decode.go 21 "unicode/utf8"
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
html.go 11 "unicode/utf8"
145 // width will not be utf8.Runelen(r) and we will overrun the buffer.
146 r, w = utf8.DecodeRuneInString(s[i:])
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go 25 "unicode/utf8"
1131 r, size := utf8.DecodeRune(buf)
1132 if r == utf8.RuneError && size == 1 {
1201 if b < utf8.RuneSelf && !isNameByte(b) {
1211 if b < utf8.RuneSelf && !isNameByte(b) {
1231 c, n := utf8.DecodeRune(s)
1232 if c == utf8.RuneError && n == 1 {
1240 c, n = utf8.DecodeRune(s)
1241 if c == utf8.RuneError && n == 1 {
1255 c, n := utf8.DecodeRuneInString(s
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go 25 "unicode/utf8"
1131 r, size := utf8.DecodeRune(buf)
1132 if r == utf8.RuneError && size == 1 {
1201 if b < utf8.RuneSelf && !isNameByte(b) {
1211 if b < utf8.RuneSelf && !isNameByte(b) {
1231 c, n := utf8.DecodeRune(s)
1232 if c == utf8.RuneError && n == 1 {
1240 c, n = utf8.DecodeRune(s)
1241 if c == utf8.RuneError && n == 1 {
1255 c, n := utf8.DecodeRuneInString(s
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/utf8/
utf8_test.go 11 . "unicode/utf8"
17 panic("utf8.MaxRune is wrong")
20 panic("utf8.RuneError is wrong")
27 t.Errorf("utf8.MaxRune is wrong: %x should be %x", MaxRune, unicode.MaxRune)
30 t.Errorf("utf8.RuneError is wrong: %x should be %x", RuneError, unicode.ReplacementChar)

Completed in 481 milliseconds

<<11121314151617181920>>