Home
last modified time | relevance | path

Searched defs:utf8 (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/external/angle/third_party/abseil-cpp/absl/debugging/internal/
Dutf8_for_code_point_test.cc28 Utf8ForCodePoint utf8(uint64_t{0}); in TEST() local
34 Utf8ForCodePoint utf8(uint64_t{'a'}); in TEST() local
40 Utf8ForCodePoint utf8(uint64_t{0x7f}); in TEST() local
46 Utf8ForCodePoint utf8(uint64_t{0x80}); in TEST() local
53 Utf8ForCodePoint utf8(uint64_t{0xf1}); in TEST() local
61 Utf8ForCodePoint utf8(uint64_t{0x3a0}); in TEST() local
69 Utf8ForCodePoint utf8(uint64_t{0x7ff}); in TEST() local
76 Utf8ForCodePoint utf8(uint64_t{0x800}); in TEST() local
84 Utf8ForCodePoint utf8(uint64_t{0x4e2d}); in TEST() local
93 Utf8ForCodePoint utf8(uint64_t{0xd7ff}); in TEST() local
[all …]
/external/cronet/stable/third_party/abseil-cpp/absl/debugging/internal/
Dutf8_for_code_point_test.cc28 Utf8ForCodePoint utf8(uint64_t{0}); in TEST() local
34 Utf8ForCodePoint utf8(uint64_t{'a'}); in TEST() local
40 Utf8ForCodePoint utf8(uint64_t{0x7f}); in TEST() local
46 Utf8ForCodePoint utf8(uint64_t{0x80}); in TEST() local
53 Utf8ForCodePoint utf8(uint64_t{0xf1}); in TEST() local
61 Utf8ForCodePoint utf8(uint64_t{0x3a0}); in TEST() local
69 Utf8ForCodePoint utf8(uint64_t{0x7ff}); in TEST() local
76 Utf8ForCodePoint utf8(uint64_t{0x800}); in TEST() local
84 Utf8ForCodePoint utf8(uint64_t{0x4e2d}); in TEST() local
93 Utf8ForCodePoint utf8(uint64_t{0xd7ff}); in TEST() local
[all …]
/external/abseil-cpp/absl/debugging/internal/
Dutf8_for_code_point_test.cc28 Utf8ForCodePoint utf8(uint64_t{0}); in TEST() local
34 Utf8ForCodePoint utf8(uint64_t{'a'}); in TEST() local
40 Utf8ForCodePoint utf8(uint64_t{0x7f}); in TEST() local
46 Utf8ForCodePoint utf8(uint64_t{0x80}); in TEST() local
53 Utf8ForCodePoint utf8(uint64_t{0xf1}); in TEST() local
61 Utf8ForCodePoint utf8(uint64_t{0x3a0}); in TEST() local
69 Utf8ForCodePoint utf8(uint64_t{0x7ff}); in TEST() local
76 Utf8ForCodePoint utf8(uint64_t{0x800}); in TEST() local
84 Utf8ForCodePoint utf8(uint64_t{0x4e2d}); in TEST() local
93 Utf8ForCodePoint utf8(uint64_t{0xd7ff}); in TEST() local
[all …]
/external/cronet/tot/third_party/abseil-cpp/absl/debugging/internal/
Dutf8_for_code_point_test.cc28 Utf8ForCodePoint utf8(uint64_t{0}); in TEST() local
34 Utf8ForCodePoint utf8(uint64_t{'a'}); in TEST() local
40 Utf8ForCodePoint utf8(uint64_t{0x7f}); in TEST() local
46 Utf8ForCodePoint utf8(uint64_t{0x80}); in TEST() local
53 Utf8ForCodePoint utf8(uint64_t{0xf1}); in TEST() local
61 Utf8ForCodePoint utf8(uint64_t{0x3a0}); in TEST() local
69 Utf8ForCodePoint utf8(uint64_t{0x7ff}); in TEST() local
76 Utf8ForCodePoint utf8(uint64_t{0x800}); in TEST() local
84 Utf8ForCodePoint utf8(uint64_t{0x4e2d}); in TEST() local
93 Utf8ForCodePoint utf8(uint64_t{0xd7ff}); in TEST() local
[all …]
/external/skia/modules/skunicode/src/
DSkUnicode_hardcoded.cpp14 bool SkUnicodeHardCodedCharProperties::isControl(SkUnichar utf8) { in isControl()
80 bool SkUnicodeHardCodedCharProperties::isTabulation(SkUnichar utf8) { in isTabulation()
84 bool SkUnicodeHardCodedCharProperties::isHardBreak(SkUnichar utf8) { in isHardBreak()
93 bool SkUnicodeHardCodedCharProperties::isEmojiComponent(SkUnichar utf8) { in isEmojiComponent()
98 bool SkUnicodeHardCodedCharProperties::isEmojiModifier(SkUnichar utf8) { in isEmojiModifier()
103 bool SkUnicodeHardCodedCharProperties::isEmojiModifierBase(SkUnichar utf8) { in isEmojiModifierBase()
DSkUnicode_icu4x.cpp62 bool isControl(SkUnichar utf8) override { return fControls.contains(utf8); } in isControl()
63 bool isWhitespace(SkUnichar utf8) override { return fWhitespaces.contains(utf8); } in isWhitespace()
64 bool isSpace(SkUnichar utf8) override { return fBlanks.contains(utf8); } in isSpace()
65 bool isHardBreak(SkUnichar utf8) override { in isHardBreak()
72 bool isEmoji(SkUnichar utf8) override { return fEmoji.contains(utf8); } in isEmoji()
73 bool isEmojiComponent(SkUnichar utf8) override { return fEmojiComponent.contains(utf8); } in isEmojiComponent()
74 bool isEmojiModifierBase(SkUnichar utf8) override { return fEmojiModifierBase.contains(utf8); } in isEmojiModifierBase()
75 bool isEmojiModifier(SkUnichar utf8) override { return fEmojiModifier.contains(utf8); } in isEmojiModifier()
76 bool isRegionalIndicator(SkUnichar utf8) override { return fRegionalIndicator.contains(utf8); } in isRegionalIndicator()
77 bool isIdeographic(SkUnichar utf8) override { return fIdeographic.contains(utf8); } in isIdeographic()
[all …]
DSkUnicode_bidi.cpp64 bool getBidiRegions(const char utf8[], in getBidiRegions()
71 bool getUtf8Words(const char utf8[], in getUtf8Words()
79 bool getSentences(const char utf8[], in getSentences()
87 bool computeCodeUnitFlags(char utf8[], in computeCodeUnitFlags()
117 …bool getWords(const char utf8[], int utf8Units, const char* locale, std::vector<Position>* results… in getWords()
DSkUnicode.cpp21 AutoTArray<char> utf8(utf8Units); in convertUtf16ToUtf8() local
32 std::u16string SkUnicode::convertUtf8ToUtf16(const char* utf8, int utf8Units) { in convertUtf8ToUtf16()
47 std::u16string SkUnicode::convertUtf8ToUtf16(const SkString& utf8) { in convertUtf8ToUtf16()
DSkUnicode_icu.cpp373 static bool extractPositions(const char utf8[], int utf8Units, in extractPositions()
423 bool isControl(SkUnichar utf8) override { in isControl()
427 bool isWhitespace(SkUnichar utf8) override { in isWhitespace()
431 bool isSpace(SkUnichar utf8) override { in isSpace()
435 bool isHardBreak(SkUnichar utf8) override { in isHardBreak()
463 bool isTabulation(SkUnichar utf8) override { in isTabulation()
467 static bool isHardLineBreak(SkUnichar utf8) { in isHardLineBreak()
521 bool getBidiRegions(const char utf8[], in getBidiRegions()
528 bool getWords(const char utf8[], int utf8Units, const char* locale, in getWords()
536 bool getUtf8Words(const char utf8[], in getUtf8Words()
[all …]
DSkUnicode_libgrapheme.cpp45 bool getBidiRegions(const char utf8[], in getBidiRegions()
52 bool getSentences(const char utf8[], in getSentences()
60 bool computeCodeUnitFlags(char utf8[], in computeCodeUnitFlags()
121 …bool getUtf8To16Mapping(const char utf8[], int utf8Units, std::unordered_map<Position, Position>* … in getUtf8To16Mapping()
143 …bool getWords(const char utf8[], int utf8Units, const char* locale, std::vector<Position>* results… in getWords()
159 bool getUtf8Words(const char utf8[], in getUtf8Words()
DSkUnicode_client.cpp88 bool getBidiRegions(const char utf8[], in getBidiRegions()
95 bool getUtf8Words(const char utf8[], in getUtf8Words()
103 bool getSentences(const char utf8[], in getSentences()
111 bool computeCodeUnitFlags(char utf8[], in computeCodeUnitFlags()
189 …bool getWords(const char utf8[], int utf8Units, const char* locale, std::vector<Position>* results… in getWords()
/external/skia/modules/skshaper/utils/
DFactoryHelpers.h58 std::unique_ptr<SkShaper::BiDiRunIterator> makeBidiRunIterator(const char* utf8, in makeBidiRunIterator()
64 std::unique_ptr<SkShaper::ScriptRunIterator> makeScriptRunIterator(const char* utf8, in makeScriptRunIterator()
82 std::unique_ptr<SkShaper::BiDiRunIterator> makeBidiRunIterator(const char* utf8, in makeBidiRunIterator()
87 std::unique_ptr<SkShaper::ScriptRunIterator> makeScriptRunIterator(const char* utf8, in makeScriptRunIterator()
/external/perfetto/src/trace_processor/importers/proto/
Dstring_encoding_utils_unittests.cc102 std::string utf8 = ConvertUtf16LeToUtf8({kUtf16Le, sizeof(kUtf16Le)}); in TEST() local
108 std::string utf8 = ConvertUtf16BeToUtf8({kUtf16Be, sizeof(kUtf16Be)}); in TEST() local
114 std::string utf8 = in TEST() local
122 std::string utf8 = in TEST() local
/external/skia/modules/skshaper/src/
DSkShaper.cpp57 SkShaper::MakeBiDiRunIterator(const char* utf8, size_t utf8Bytes, uint8_t bidiLevel) { in MakeBiDiRunIterator()
68 SkShaper::MakeScriptRunIterator(const char* utf8, size_t utf8Bytes, SkFourByteTag scriptTag) { in MakeScriptRunIterator()
91 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in FontMgrRunIterator()
109 FontMgrRunIterator(const char* utf8, size_t utf8Bytes, in FontMgrRunIterator()
187 SkShaper::MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes, in MakeFontMgrRunIterator()
194 SkShaper::MakeFontMgrRunIterator(const char* utf8, size_t utf8Bytes, const SkFont& font, in MakeFontMgrRunIterator()
204 SkShaper::MakeStdLanguageRunIterator(const char* utf8, size_t utf8Bytes) { in MakeStdLanguageRunIterator()
DSkShaper_skunicode.cpp31 SkUnicodeBidiRunIterator(const char* utf8, const char* end, SkUnicodeBidi bidi) in SkUnicodeBidiRunIterator()
108 std::unique_ptr<SkShaper::BiDiRunIterator> SkShaper::MakeIcuBiDiRunIterator(const char* utf8, in MakeIcuBiDiRunIterator()
121 const char* utf8, in BidiRunIterator()
DSkShaper_coretext.cpp120 bool setUTF8(const char* utf8, size_t size) { in setUTF8()
165 void SkShaper_CoreText::shape(const char* utf8, in shape()
176 void SkShaper_CoreText::shape(const char* utf8, in shape()
195 void SkShaper_CoreText::shape(const char* utf8, in shape()
DSkShaper_primitive.cpp142 void SkShaperPrimitive::shape(const char* utf8, in shape()
153 void SkShaperPrimitive::shape(const char* utf8, in shape()
172 void SkShaperPrimitive::shape(const char* utf8, in shape()
/external/turbine/java/com/google/turbine/bytecode/
DConstantPool.java97 int utf8 = utf8(value); in classInfo() local
107 int utf8(String value) { in utf8() method in ConstantPool
155 int utf8 = utf8(value); in string() local
167 int utf8 = utf8(value); in moduleInfo() local
179 int utf8 = utf8(value); in packageInfo() local
/external/cronet/stable/base/strings/
Dutf_string_conversions_unittest.cc53 std::ostringstream utf8; in TEST() local
73 const char* utf8; in TEST() member
126 const char* utf8; in TEST() member
156 const char* utf8; in TEST() member
/external/cronet/tot/base/strings/
Dutf_string_conversions_unittest.cc53 std::ostringstream utf8; in TEST() local
73 const char* utf8; in TEST() member
126 const char* utf8; in TEST() member
156 const char* utf8; in TEST() member
/external/skia/modules/skparagraph/tests/
DSkShaperJSONWriter.cpp24 SkShaperJSONWriter::SkShaperJSONWriter(SkJSONWriter* JSONWriter, const char* utf8, size_t size) in SkShaperJSONWriter()
42 static bool is_one_to_one(const char utf8[], size_t utf8Begin, size_t utf8End, in is_one_to_one()
93 std::string utf8{&fUTF8[info.utf8Range.begin()], info.utf8Range.size()}; in commitRunBuffer() local
175 void SkShaperJSONWriter::VisualizeClusters(const char* utf8, size_t utf8Begin, size_t utf8End, in VisualizeClusters()
229 SkSpan<const char> utf8, in displayMToN()
/external/libchrome/base/strings/
Dutf_string_conversions_unittest.cc53 std::ostringstream utf8; in TEST() local
73 const char* utf8; in TEST() member
129 const char* utf8; in TEST() member
159 const char* utf8; in TEST() member
/external/fbjni/cxx/fbjni/detail/
Dutf8.cpp58 inline bool isFourByteUTF8Encoding(const T* utf8) { in isFourByteUTF8Encoding()
107 const uint8_t* utf8, in utf8ToModifiedUTF8()
175 std::string utf8(len, 0); in modifiedUTF8ToUTF8() local
/external/flac/src/share/utf8/
DCMakeLists.txt3 add_library(utf8 STATIC target
/external/aws-sdk-java-v2/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/marshaller/dynamodb/
DV1DynamoDbAttributeValue.java114 private byte[] utf8; field in V1DynamoDbAttributeValue.TestItemUnmarshalling
122 public byte[] utf8() { in utf8() method in V1DynamoDbAttributeValue.TestItemUnmarshalling

12345678910>>...13