Lines Matching refs:result
473 std::u16string result;
474 result += u"\u202E";
476 // result += text[i - 1];
482 result += u"!";
484 result += u"!";
486 result += ch;
490 result += u"\u202C";
491 return result;
495 std::u16string result;
496 result += u"\u202D";
498 result += ch;
500 result += u"\u202C";
501 return result;
1354 auto result = paragraph->getRectsForRange(65, 66, RectHeightStyle::kTight, RectWidthStyle::kTight);
1362 if (!result.empty()) {
1363 canvas->drawRect(result.front().rect, paint);
1531 std::u16string result;
1535 result += combiningMarks[index];
1537 return result;
1542 std::u16string result;
1544 result += c;
1545 result += randomMarks(COMBINING_UP);
1546 result += randomMarks(COMBINING_MIDDLE);
1547 result += randomMarks(COMBINING_DOWN);
1549 return result;
3524 auto result = paragraph->getGlyphPositionAtCoordinate(20, 2); // "hello " 60,2
3525 SkDebugf("getGlyphPositionAtCoordinate(20,2)=%d %s\n", result.position, result.affinity == Affinity::kDownstream ? "D" : "U");