Lines Matching refs:utf8Text
29 RunHandler(const char* utf8Text, size_t) : fUtf8Text(utf8Text) {}
31 const char* utf8Text,
184 const char* utf8Text,
236 int codePointCount = SkUTF::CountUTF8(utf8Text + textBegin, textCount);
244 const char* ptr = utf8Text + textBegin;
245 const char* end = utf8Text + textEnd;
250 int firstIndex = ptr - utf8Text;
259 ShapeResult SkPlainTextEditor::Shape(const char* utf8Text,
266 if (SkUTF::CountUTF8(utf8Text, textByteLen) < 0) {
267 utf8Text = nullptr;
272 RunHandler runHandler(utf8Text, textByteLen);
280 shaper->shape(utf8Text, textByteLen, font, true, width, &runHandler);
291 result.wordBreaks = GetUtf8WordBoundaries(utf8Text, textByteLen, locale);