Lines Matching refs:utf8Text
29 RunHandler(const char* utf8Text, size_t) : fUtf8Text(utf8Text) {} in RunHandler() argument
31 const char* utf8Text,
185 const char* utf8Text, in set_character_bounds() argument
237 int codePointCount = SkUTF::CountUTF8(utf8Text + textBegin, textCount); in set_character_bounds()
245 const char* ptr = utf8Text + textBegin; in set_character_bounds()
246 const char* end = utf8Text + textEnd; in set_character_bounds()
251 int firstIndex = ptr - utf8Text; in set_character_bounds()
260 ShapeResult editor::Shape(const char* utf8Text, in Shape() argument
267 if (SkUTF::CountUTF8(utf8Text, textByteLen) < 0) { in Shape()
268 utf8Text = nullptr; in Shape()
273 RunHandler runHandler(utf8Text, textByteLen); in Shape()
281 shaper->shape(utf8Text, textByteLen, font, true, width, &runHandler); in Shape()
292 result.wordBreaks = GetUtf8WordBoundaries(utf8Text, textByteLen, locale); in Shape()