Lines Matching defs:text
67 const UChar* text,
72 return sk_ubidi_setPara(bidi, text, length, paraLevel, embeddingLevels, status);
130 ICUUText text(sk_utext_openUTF8(nullptr, &utftext8[0], utf8Units, &status));
136 SkASSERT(text);
137 sk_ubrk_setUText(fBreakIterator.get(), text.get(), &status);
147 ICUUText text(sk_utext_openUChars(nullptr, reinterpret_cast<const UChar*>(&utftext16[0]),
154 SkASSERT(text);
155 sk_ubrk_setUText(fBreakIterator.get(), text.get(), &status);
245 ICUUText text(sk_utext_openUTF8(nullptr, &utf8[0], utf8Units, &status));
251 SkASSERT(text);
258 sk_ubrk_setUText(iterator.get(), text.get(), &status);
276 // (ICU line break iterator does not work correctly on Thai text with new lines)
278 // scan the text for all hard line breaks ourselves
318 std::unique_ptr<SkBidiIterator> makeBidiIterator(const uint16_t text[], int count,
320 return SkUnicode::makeBidiIterator(text, count, dir);
322 std::unique_ptr<SkBidiIterator> makeBidiIterator(const char text[],
325 return SkUnicode::makeBidiIterator(text, count, dir);