Home | History | Annotate | Download | only in rendering

Lines Matching defs:textRun

223     TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
228 r = enclosingIntRect(font.selectionRectForText(textRun, startingPoint, selHeight, sPos, ePos));
491 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
493 length = textRun.length();
502 selectionEnd = textRun.length();
510 TextPainter textPainter(context, font, textRun, textOrigin, boxRect, isHorizontal());
621 TextRun textRun = constructTextRun(style, font, string, renderer().textLength() - m_start, respectHyphen ? &charactersWithHyphen : 0);
623 ePos = textRun.length();
636 context->drawHighlightForText(font, textRun, localOrigin, selHeight, c, sPos, ePos);
980 TextRun run = constructTextRun(style, font);
1025 TextRun run = constructTextRun(style, font);
1238 TextRun textRun = constructTextRun(styleToUse, font);
1241 WidthIterator it(&font, textRun);
1251 TextRun InlineTextBox::constructTextRun(RenderStyle* style, const Font& font, StringBuilder* charactersWithHyphen) const
1266 TextRun InlineTextBox::constructTextRun(RenderStyle* style, const Font& font, StringView string, int maximumLength, StringBuilder* charactersWithHyphen) const
1281 TextRun run(string, textPos(), expansion(), expansionBehavior(), direction(), dirOverride() || style->rtlOrdering() == VisualOrder, !renderer().canUseSimpleFontCodePath());
1287 // Propagate the maximum length of the characters buffer to the TextRun, even when we're only processing a substring.
1293 TextRun InlineTextBox::constructTextRunForInspector(RenderStyle* style, const Font& font) const