Home
last modified time | relevance | path

Searched refs:textRun (Results 1 – 11 of 11) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderFileUploadControl.cpp201 …TextRun textRun(string, length, false, 0, 0, style()->direction() == RTL, style()->unicodeBidi() =… in paintObject() local
211 … textX = contentLeft + contentWidth() - buttonAndIconWidth - style()->font().width(textRun); in paintObject()
221 paintInfo.context->drawBidiText(style()->font(), textRun, IntPoint(textX, textY)); in paintObject()
DInlineTextBox.cpp276 static void paintTextWithShadows(GraphicsContext* context, const Font& font, const TextRun& textRun in paintTextWithShadows() argument
307 context->drawText(font, textRun, textOrigin + extraOffset, startOffset, endOffset); in paintTextWithShadows()
310 context->drawText(font, textRun, textOrigin + extraOffset, 0, endOffset); in paintTextWithShadows()
312 … context->drawText(font, textRun, textOrigin + extraOffset, startOffset, truncationPoint); in paintTextWithShadows()
475 …TextRun textRun(textRenderer()->text()->characters() + m_start, m_len, textRenderer()->allowTabs()… in paint() local
498 …paintTextWithShadows(context, font, textRun, 0, length, length, textOrigin, m_x + tx, m_y + ty, wi… in paint()
500 …paintTextWithShadows(context, font, textRun, ePos, sPos, length, textOrigin, m_x + tx, m_y + ty, w… in paint()
512 …paintTextWithShadows(context, font, textRun, sPos, ePos, length, textOrigin, m_x + tx, m_y + ty, w… in paint()
DRenderImage.cpp418 TextRun textRun(text.characters(), text.length()); in paintReplaced() local
419 int textWidth = font.width(textRun); in paintReplaced()
422 context->drawText(style()->font(), textRun, IntPoint(ax, ay + ascent)); in paintReplaced()
424 context->drawText(style()->font(), textRun, IntPoint(ax, ay + ascent)); in paintReplaced()
DRenderListMarker.cpp1108 TextRun textRun(m_text); in paint() local
1119 textRun = TextRun(reversedText.data(), length); in paint()
1125 int width = font.width(textRun); in paint()
1126 context->drawText(style()->font(), textRun, marker.location()); in paint()
1134 context->drawText(style()->font(), textRun, marker.location() + IntSize(width, 0)); in paint()
DRenderListBox.cpp337 …TextRun textRun(string, length, 0, 0, 0, itemStyle->direction() == RTL, itemStyle->unicodeBidi() =… in paintItemForeground() local
341 paintInfo.context->drawBidiText(itemFont, textRun, r.location()); in paintItemForeground()
/external/webkit/WebCore/platform/graphics/
DGraphicsContext.cpp46 TextRunIterator(const TextRun* textRun, unsigned offset) in TextRunIterator() argument
47 : m_textRun(textRun) in TextRunIterator()
/external/webkit/WebCore/platform/chromium/
DPopupMenuChromium.cpp856 TextRun textRun(str, length, false, 0, 0, rtl); in paintRow() local
860 textX += maxWidth - itemFont.width(textRun); in paintRow()
863 gc->drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in paintRow()
/external/webkit/WebCore/platform/win/
DPopupMenuWin.cpp630 …TextRun textRun(string, length, false, 0, 0, itemText.defaultWritingDirection() == WTF::Unicode::R… in paint() local
648 context.drawBidiText(itemFont, textRun, IntPoint(textX, textY)); in paint()
/external/webkit/WebCore/html/canvas/
DCanvasRenderingContext2D.cpp1469 TextRun textRun(string, length, 0, 0, 0, rtl, override, false, false); in drawTextInternal() local
1544 maskImageContext->drawBidiText(font, textRun, location); in drawTextInternal()
1557 c->drawBidiText(font, textRun, location); in drawTextInternal()
/external/webkit/WebKit/android/nav/
DSelectText.cpp64 TextRunIterator(const TextRun* textRun, unsigned offset) in TextRunIterator() argument
65 : m_textRun(textRun) in TextRunIterator()
/external/webkit/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.mm1190 TextRun textRun(text.characters(), text.length());
1197 context->drawText(styleToUse->font(), textRun, IntPoint(2, -3));