Home
last modified time | relevance | path

Searched full:utf8 (Results 1 – 25 of 1998) sorted by relevance

12345678910>>...80

/third_party/node/test/parallel/
Dtest-buffer-slice.js27 assert.strictEqual(Buffer.from('hello', 'utf8').slice(0, 0).length, 0);
28 assert.strictEqual(Buffer('hello', 'utf8').slice(0, 0).length, 0);
30 const buf = Buffer.from('0123456789', 'utf8');
32 [buf.slice(-10, 10), Buffer.from('0123456789', 'utf8')],
33 [buf.slice(-20, 10), Buffer.from('0123456789', 'utf8')],
34 [buf.slice(-20, -10), Buffer.from('', 'utf8')],
35 [buf.slice(), Buffer.from('0123456789', 'utf8')],
36 [buf.slice(0), Buffer.from('0123456789', 'utf8')],
37 [buf.slice(0, 0), Buffer.from('', 'utf8')],
38 [buf.slice(undefined), Buffer.from('0123456789', 'utf8')],
[all …]
Dtest-trace-events-fs-sync.js19 tests['fs.sync.access'] = 'fs.writeFileSync("fs0.txt", "123", "utf8");' +
22 tests['fs.sync.chmod'] = 'fs.writeFileSync("fs1.txt", "123", "utf8");' +
25 tests['fs.sync.chown'] = 'fs.writeFileSync("fs2.txt", "123", "utf8");' +
28 tests['fs.sync.close'] = 'fs.writeFileSync("fs3.txt", "123", "utf8");' +
30 tests['fs.sync.copyfile'] = 'fs.writeFileSync("fs4.txt", "123", "utf8");' +
33 tests['fs.sync.fchmod'] = 'fs.writeFileSync("fs5.txt", "123", "utf8");' +
37 tests['fs.sync.fchown'] = 'fs.writeFileSync("fs6.txt", "123", "utf8");' +
41 tests['fs.sync.fdatasync'] = 'fs.writeFileSync("fs7.txt", "123", "utf8");' +
45 tests['fs.sync.fstat'] = 'fs.writeFileSync("fs8.txt", "123", "utf8");' +
48 tests['fs.sync.fsync'] = 'fs.writeFileSync("fs9.txt", "123", "utf8");' +
[all …]
Dtest-internal-util-normalizeencoding.js9 [undefined, 'utf8'],
10 [null, 'utf8'],
11 ['', 'utf8'],
12 ['utf8', 'utf8'],
13 ['utf-8', 'utf8'],
14 ['UTF-8', 'utf8'],
15 ['UTF8', 'utf8'],
16 ['Utf8', 'utf8'],
17 ['uTf-8', 'utf8'],
18 ['utF-8', 'utf8'],
Dtest-icu-transcode.js10 const orig = Buffer.from('těst ☕', 'utf8');
22 const dest = buffer.transcode(orig, 'utf8', test);
23 assert.strictEqual(dest.length, tests[test].length, `utf8->${test} length`);
25 assert.strictEqual(dest[n], tests[test][n], `utf8->${test} char ${n}`);
29 const dest = buffer.transcode(Buffer.from(tests.ucs2), 'ucs2', 'utf8');
34 const utf8 = Buffer.from('€'.repeat(4000), 'utf8'); constant
36 const utf8_to_ucs2 = buffer.transcode(utf8, 'utf8', 'ucs2');
37 const ucs2_to_utf8 = buffer.transcode(ucs2, 'ucs2', 'utf8');
38 assert.deepStrictEqual(utf8, ucs2_to_utf8);
40 assert.strictEqual(ucs2_to_utf8.toString('utf8'),
[all …]
Dtest-trace-events-fs-async.js25 fs.writeFileSync('fs0.txt', '123', 'utf8');
33 fs.writeFileSync('fs1.txt', '123', 'utf8');
41 fs.writeFileSync('fs2.txt', '123', 'utf8');
49 fs.writeFile('fs3.txt', '123', 'utf8', () => {
56 fs.writeFileSync('fs4.txt', '123', 'utf8');
65 fs.writeFileSync('fs5.txt', '123', 'utf8');
74 fs.writeFileSync('fs6.txt', '123', 'utf8');
83 fs.writeFileSync('fs7.txt', '123', 'utf8');
92 fs.writeFileSync('fs8.txt', '123', 'utf8');
100 fs.writeFileSync('fs9.txt', '123', 'utf8');
[all …]
/third_party/openssl/crypto/x509/
Dv3_utf8.c30 ASN1_UTF8STRING *utf8) in i2s_ASN1_UTF8STRING() argument
34 if (utf8 == NULL || utf8->length == 0) { in i2s_ASN1_UTF8STRING()
38 if ((tmp = OPENSSL_malloc(utf8->length + 1)) == NULL) { in i2s_ASN1_UTF8STRING()
42 memcpy(tmp, utf8->data, utf8->length); in i2s_ASN1_UTF8STRING()
43 tmp[utf8->length] = 0; in i2s_ASN1_UTF8STRING()
50 ASN1_UTF8STRING *utf8; in s2i_ASN1_UTF8STRING() local
55 if ((utf8 = ASN1_UTF8STRING_new()) == NULL) { in s2i_ASN1_UTF8STRING()
59 if (!ASN1_STRING_set((ASN1_STRING *)utf8, str, strlen(str))) { in s2i_ASN1_UTF8STRING()
61 ASN1_UTF8STRING_free(utf8); in s2i_ASN1_UTF8STRING()
65 ebcdic2ascii(utf8->data, utf8->data, utf8->length); in s2i_ASN1_UTF8STRING()
[all …]
/third_party/node/deps/openssl/openssl/crypto/x509/
Dv3_utf8.c30 ASN1_UTF8STRING *utf8) in i2s_ASN1_UTF8STRING() argument
34 if (utf8 == NULL || utf8->length == 0) { in i2s_ASN1_UTF8STRING()
38 if ((tmp = OPENSSL_malloc(utf8->length + 1)) == NULL) { in i2s_ASN1_UTF8STRING()
42 memcpy(tmp, utf8->data, utf8->length); in i2s_ASN1_UTF8STRING()
43 tmp[utf8->length] = 0; in i2s_ASN1_UTF8STRING()
50 ASN1_UTF8STRING *utf8; in s2i_ASN1_UTF8STRING() local
55 if ((utf8 = ASN1_UTF8STRING_new()) == NULL) { in s2i_ASN1_UTF8STRING()
59 if (!ASN1_STRING_set((ASN1_STRING *)utf8, str, strlen(str))) { in s2i_ASN1_UTF8STRING()
61 ASN1_UTF8STRING_free(utf8); in s2i_ASN1_UTF8STRING()
65 ebcdic2ascii(utf8->data, utf8->data, utf8->length); in s2i_ASN1_UTF8STRING()
[all …]
/third_party/skia/modules/skshaper/src/
DSkShaper_primitive.cpp23 void shape(const char* utf8, size_t utf8Bytes,
33 void shape(const char* utf8, size_t utf8Bytes,
41 void shape(const char* utf8, size_t utf8Bytes,
146 void SkShaperPrimitive::shape(const char* utf8, size_t utf8Bytes, in shape() argument
175 return this->shape(utf8, utf8Bytes, skfont, skbidi, width, handler); in shape()
178 void SkShaperPrimitive::shape(const char* utf8, size_t utf8Bytes, in shape() argument
189 return this->shape(utf8, utf8Bytes, font.currentFont(), (bidi.currentLevel() % 2) == 0, in shape()
193 void SkShaperPrimitive::shape(const char* utf8, size_t utf8Bytes, in shape() argument
205 int glyphCount = font.CountText(utf8, utf8Bytes, RSDrawing::TextEncoding::UTF8); in shape()
207 int glyphCount = font.countText(utf8, utf8Bytes, SkTextEncoding::kUTF8); in shape()
[all …]
DSkShaper.cpp69 SkShaper::MakeBiDiRunIterator(const char* utf8, size_t utf8Bytes, uint8_t bidiLevel) { in Make() argument
77 utf8, in Make()
88 SkShaper::MakeScriptRunIterator(const char* utf8, size_t utf8Bytes, SkFourByteTag scriptTag) { in Make() argument
95 SkShaper::MakeSkUnicodeHbScriptRunIterator(utf8, utf8Bytes, scriptTag); in Make()
115 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make() argument
119 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in Make()
131 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make() argument
133 : FontMgrRunIterator(utf8, utf8Bytes, font, std::move(fallbackMgr), in Make()
210 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in Make() argument
214 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in Make()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DConvertUTFWrapper.cpp21 char *&ResultPtr, const UTF8 *&ErrorPtr) { in ConvertUTF8toWide()
26 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin()); in ConvertUTF8toWide()
27 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) { in ConvertUTF8toWide()
35 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide()
48 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide()
69 UTF8 *TargetStart = reinterpret_cast<UTF8 *>(ResultPtr); in ConvertCodePointToUTF8()
70 UTF8 *TargetEnd = TargetStart + 4; in ConvertCodePointToUTF8()
118 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]); in convertUTF16ToUTF8String()
119 UTF8 *DstEnd = Dst + Out.size(); in convertUTF16ToUTF8String()
154 const UTF8 *Src = reinterpret_cast<const UTF8 *>(SrcUTF8.begin()); in convertUTF8ToUTF16String()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DConvertUTFWrapper.cpp20 char *&ResultPtr, const UTF8 *&ErrorPtr) { in ConvertUTF8toWide()
25 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin()); in ConvertUTF8toWide()
26 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) { in ConvertUTF8toWide()
34 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide()
47 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide()
68 UTF8 *TargetStart = reinterpret_cast<UTF8 *>(ResultPtr); in ConvertCodePointToUTF8()
69 UTF8 *TargetEnd = TargetStart + 4; in ConvertCodePointToUTF8()
117 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]); in convertUTF16ToUTF8String()
118 UTF8 *DstEnd = Dst + Out.size(); in convertUTF16ToUTF8String()
153 const UTF8 *Src = reinterpret_cast<const UTF8 *>(SrcUTF8.begin()); in convertUTF8ToUTF16String()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DConvertUTF.h111 typedef unsigned char UTF8; /* typically 8 bits */ typedef
139 const UTF8** sourceStart, const UTF8* sourceEnd,
143 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
147 const UTF8** sourceStart, const UTF8* sourceEnd,
151 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
155 const UTF8** sourceStart, const UTF8* sourceEnd,
160 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
164 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
174 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd);
176 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd);
[all …]
/third_party/python/Lib/test/
Dtest_utf8_mode.py52 out = self.get_output('-X', 'utf8', '-c', code)
55 # undocumented but accepted syntax: -X utf8=1
56 out = self.get_output('-X', 'utf8=1', '-c', code)
59 out = self.get_output('-X', 'utf8=0', '-c', code)
64 # and has the priority over -X utf8
65 out = self.get_output('-X', 'utf8', '-c', code,
78 # -X utf8 has the priority over PYTHONUTF8
79 out = self.get_output('-X', 'utf8=0', '-c', code, PYTHONUTF8='1')
85 out = self.get_output('-X', 'utf8', '-c', code, PYTHONUTF8='1',
113 out = self.get_output('-X', 'utf8', '-c', code)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DConvertUTF.h111 typedef unsigned char UTF8; /* typically 8 bits */ typedef
139 const UTF8** sourceStart, const UTF8* sourceEnd,
143 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
147 const UTF8** sourceStart, const UTF8* sourceEnd,
151 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
155 const UTF8** sourceStart, const UTF8* sourceEnd,
160 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
164 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
174 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd);
176 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd);
[all …]
/third_party/json/tests/src/
Dunit-unicode4.cpp182 UTF8-octets = *( UTF8-char ) in skip()
183 UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4 in skip()
184 UTF8-1 = %x00-7F in skip()
185 UTF8-2 = %xC2-DF UTF8-tail in skip()
186 UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) / in skip()
187 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail ) in skip()
188 UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) / in skip()
189 %xF4 %x80-8F 2( UTF8-tail ) in skip()
190 UTF8-tail = %x80-BF in skip()
193 SECTION("UTF8-4 (xF1-F3 UTF8-tail UTF8-tail UTF8-tail)") in skip()
Dunit-unicode3.cpp182 UTF8-octets = *( UTF8-char ) in skip()
183 UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4 in skip()
184 UTF8-1 = %x00-7F in skip()
185 UTF8-2 = %xC2-DF UTF8-tail in skip()
186 UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) / in skip()
187 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail ) in skip()
188 UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) / in skip()
189 %xF4 %x80-8F 2( UTF8-tail ) in skip()
190 UTF8-tail = %x80-BF in skip()
193 SECTION("UTF8-4 (xF0 x90-BF UTF8-tail UTF8-tail)") in skip()
Dunit-unicode5.cpp182 UTF8-octets = *( UTF8-char ) in skip()
183 UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4 in skip()
184 UTF8-1 = %x00-7F in skip()
185 UTF8-2 = %xC2-DF UTF8-tail in skip()
186 UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) / in skip()
187 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail ) in skip()
188 UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) / in skip()
189 %xF4 %x80-8F 2( UTF8-tail ) in skip()
190 UTF8-tail = %x80-BF in skip()
193 SECTION("UTF8-4 (xF4 x80-8F UTF8-tail UTF8-tail)") in skip()
Dunit-unicode2.cpp182 UTF8-octets = *( UTF8-char ) in skip()
183 UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4 in skip()
184 UTF8-1 = %x00-7F in skip()
185 UTF8-2 = %xC2-DF UTF8-tail in skip()
186 UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) / in skip()
187 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail ) in skip()
188 UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) / in skip()
189 %xF4 %x80-8F 2( UTF8-tail ) in skip()
190 UTF8-tail = %x80-BF in skip()
208 SECTION("UTF8-1 (x00-x7F)") in skip()
[all …]
/third_party/openssl/test/recipes/
D25-test_eai_data.t19 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d…
20 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d…
21 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d…
22 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d…
50 is(cmp_text($out, srctop_file($folder, "san.utf8")), 0, 'Comparing othername for IDN domain');
55 …ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-verify_email", "学生\@eleme…
56 …ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-verify_email", "医生\@大学.ex…
59 ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-CAfile", $ascii_chain_pem,…
60 ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-CAfile", $utf8_chain_pem, …
61 ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-CAfile", $kdc_chain_pem, $…
[all …]
/third_party/node/deps/v8/src/strings/
Dunicode-decoder.cc24 unibrow::Utf8::State state = unibrow::Utf8::State::kAccept; in Utf8Decoder()
28 unibrow::Utf8::ValueOfIncremental(&cursor, &state, &incomplete_char); in Utf8Decoder()
29 if (t != unibrow::Utf8::kIncomplete) { in Utf8Decoder()
36 unibrow::uchar t = unibrow::Utf8::ValueOfIncrementalFinish(&state); in Utf8Decoder()
37 if (t != unibrow::Utf8::kBufferEmpty) { in Utf8Decoder()
52 unibrow::Utf8::State state = unibrow::Utf8::State::kAccept; in Decode()
59 unibrow::Utf8::ValueOfIncremental(&cursor, &state, &incomplete_char); in Decode()
60 if (t != unibrow::Utf8::kIncomplete) { in Decode()
70 unibrow::uchar t = unibrow::Utf8::ValueOfIncrementalFinish(&state); in Decode()
71 if (t != unibrow::Utf8::kBufferEmpty) *out = static_cast<Char>(t); in Decode()
/third_party/skia/src/utils/
DSkUTF.cpp21 /** @returns -1 iff invalid UTF8 byte,
22 0 iff UTF8 continuation byte,
48 int SkUTF::CountUTF8(const char* utf8, size_t byteLength) { in CountUTF8() argument
49 if (!utf8) { in CountUTF8()
53 const char* stop = utf8 + byteLength; in CountUTF8()
54 while (utf8 < stop) { in CountUTF8()
55 int type = utf8_byte_type(*(const uint8_t*)utf8); in CountUTF8()
56 if (!utf8_type_is_valid_leading_byte(type) || utf8 + type > stop) { in CountUTF8()
60 ++utf8; in CountUTF8()
61 if (!utf8_byte_is_continuation(*(const uint8_t*)utf8)) { in CountUTF8()
[all …]
/third_party/skia/modules/skunicode/include/
DSkUnicode.h144 static bool isIdeographic(SkUnichar utf8);
145 static bool extractBidi(const char utf8[],
149 virtual bool getBidiRegions(const char utf8[],
153 virtual bool getWords(const char utf8[], int utf8Units, const char* locale,
156 char utf8[], int utf8Units, bool replaceTabs,
164 static std::u16string convertUtf8ToUtf16(const char* utf8, int utf8Units);
165 static std::u16string convertUtf8ToUtf16(const SkString& utf8);
168 …static bool extractUtfConversionMapping(SkSpan<const char> utf8, Appender8&& appender8, Appender16… in extractUtfConversionMapping() argument
171 auto ptr = utf8.begin(); in extractUtfConversionMapping()
172 auto end = utf8.end(); in extractUtfConversionMapping()
[all …]
/third_party/skia/modules/skunicode/src/
DSkUnicode_icu.cpp242 (const char utf8[], int utf8Units, BreakType type, std::function<void(int, int)> setBreak) { in extractPositions() argument
245 ICUUText text(sk_utext_openUTF8(nullptr, &utf8[0], utf8Units, &status)); in extractPositions()
279 const char* end = utf8 + utf8Units; in extractPositions()
280 const char* ch = utf8; in extractPositions()
284 setBreak(ch - utf8, UBRK_LINE_HARD); in extractPositions()
291 static bool isControl(SkUnichar utf8) { in isControl() argument
292 return sk_u_iscntrl(utf8); in isControl()
295 static bool isWhitespace(SkUnichar utf8) { in isWhitespace() argument
296 return sk_u_isWhitespace(utf8); in isWhitespace()
299 static bool isSpace(SkUnichar utf8) { in isSpace() argument
[all …]
/third_party/openssl/doc/man7/
DEVP_SIGNATURE-RSA.pod21 =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string>
23 =item "properties" (B<OSSL_SIGNATURE_PARAM_PROPERTIES>) <UTF8 string>
27 =item "pad-mode" (B<OSSL_SIGNATURE_PARAM_PAD_MODE>) <UTF8 string>
43 =item "mgf1-digest" (B<OSSL_SIGNATURE_PARAM_MGF1_DIGEST>) <UTF8 string>
47 =item "mgf1-properties" (B<OSSL_SIGNATURE_PARAM_MGF1_PROPERTIES>) <UTF8 string>
52 =item "saltlen" (B<OSSL_SIGNATURE_PARAM_PSS_SALTLEN>) <integer> or <UTF8 string>
84 =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string>
86 =item "pad-mode" (B<OSSL_SIGNATURE_PARAM_PAD_MODE>) <UTF8 string>
88 =item "mgf1-digest" (B<OSSL_SIGNATURE_PARAM_MGF1_DIGEST>) <UTF8 string>
90 =item "saltlen" (B<OSSL_SIGNATURE_PARAM_PSS_SALTLEN>) <integer> or <UTF8 string>
/third_party/skia/modules/skshaper/include/
DSkShaper.h88 /** Offset to one past the last (utf8) element in the current run. */
119 size_t start; // Offset to the start (utf8) element of the run.
120 size_t end; // Offset to one past the last (utf8) element of the run.
140 MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes,
143 MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes,
157 MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes,
160 MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes,
175 MakeBiDiRunIterator(const char* utf8, size_t utf8Bytes, uint8_t bidiLevel);
178 …MakeSkUnicodeBidiRunIterator(SkUnicode* unicode, const char* utf8, size_t utf8Bytes, uint8_t bidiL…
180 MakeIcuBiDiRunIterator(const char* utf8, size_t utf8Bytes, uint8_t bidiLevel);
[all …]

12345678910>>...80