Lines Matching defs:text
22 std::u16string text = u"\U000f2008";
23 auto utf8 = SkUnicode::convertUtf16ToUtf8(text.data(), text.size());
36 std::u16string text = u"\U000f2008";
37 auto utf8 = SkUnicode::convertUtf16ToUtf8(text.data(), text.size());
47 SkString text("1 22 333 4444 55555 666666 7777777");
51 auto result = icu->getWords(text.data(), text.size(), "en", &results);
60 SkString text("1 22 333 4444 55555 666666 7777777");
63 auto result = icu->getBidiRegions(text.data(),
64 text.size(),
70 results[0].end == text.size() &&
74 SkString text("الهيمنة على العالم عبارة قبيحة ، أفضل أن أسميها تحسين العالم.");
77 auto result = icu->getBidiRegions(text.data(),
78 text.size(),
84 results[0].end == text.size() &&
90 SkString text("1 22 333 4444 55555 666666 7777777");
108 auto result = icu->getBidiRegions(text.data(),
109 text.size(),
123 SkString text("World ЛТР Domination هي عبارة قبيحة ، أفضل أن أسميها World ЛТР Optimization.");
131 auto result = icu->getBidiRegions(text.data(),
132 text.size(),
155 //SkString text("World domination is such an ugly phrase - I prefer to call it world optimisation");
156 SkString text("1\n22 333 4444 55555 666666 7777777");
160 auto result = icu->computeCodeUnitFlags(text.data(),
161 text.size(),
165 REPORTER_ASSERT(reporter, results.size() == SkToS16(text.size() + 1));