/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderFileUploadControl.cpp | 133 TextRunPaintInfo textRunPaintInfo(textRun); in paintObject() local 134 textRunPaintInfo.bounds = FloatRect(textX, in paintObject() 142 …paintInfo.context->drawBidiText(font, textRunPaintInfo, IntPoint(roundToInt(textX), roundToInt(tex… in paintObject()
|
D | EllipsisBox.cpp | 85 TextRunPaintInfo textRunPaintInfo(textRun); in paint() local 86 textRunPaintInfo.bounds = boxRect; in paint() 87 context->drawText(font, textRunPaintInfo, textOrigin); in paint()
|
D | InlineTextBox.cpp | 415 TextRunPaintInfo textRunPaintInfo(textRun); in paintTextWithShadows() local 416 textRunPaintInfo.bounds = boxRect; in paintTextWithShadows() 418 textRunPaintInfo.from = startOffset; in paintTextWithShadows() 419 textRunPaintInfo.to = endOffset; in paintTextWithShadows() 421 context->drawText(font, textRunPaintInfo, textOrigin); in paintTextWithShadows() 423 …context->drawEmphasisMarks(font, textRunPaintInfo, emphasisMark, textOrigin + IntSize(0, emphasisM… in paintTextWithShadows() 426 textRunPaintInfo.from = 0; in paintTextWithShadows() 427 textRunPaintInfo.to = endOffset; in paintTextWithShadows() 429 context->drawText(font, textRunPaintInfo, textOrigin); in paintTextWithShadows() 431 …context->drawEmphasisMarks(font, textRunPaintInfo, emphasisMark, textOrigin + IntSize(0, emphasisM… in paintTextWithShadows() [all …]
|
D | RenderImage.cpp | 365 TextRunPaintInfo textRunPaintInfo(textRun); in paintReplaced() local 366 … textRunPaintInfo.bounds = FloatRect(textRectOrigin, FloatSize(textWidth, fontMetrics.height())); in paintReplaced() 370 context->drawText(font, textRunPaintInfo, textOrigin); in paintReplaced() 372 context->drawText(font, textRunPaintInfo, textOrigin); in paintReplaced()
|
D | RenderListMarker.cpp | 1282 TextRunPaintInfo textRunPaintInfo(textRun); in paint() local 1283 textRunPaintInfo.bounds = marker; in paint() 1287 context->drawText(font, textRunPaintInfo, textOrigin); in paint() 1305 context->drawText(font, textRunPaintInfo, textOrigin); in paint() 1319 … context->drawText(font, textRunPaintInfo, textOrigin + IntSize(font.width(suffixRun), 0)); in paint()
|
D | RenderListBox.cpp | 440 TextRunPaintInfo textRunPaintInfo(textRun); in paintItemForeground() local 441 textRunPaintInfo.bounds = r; in paintItemForeground() 442 paintInfo.context->drawBidiText(itemFont, textRunPaintInfo, roundedIntPoint(r.location())); in paintItemForeground()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | SVGInlineTextBox.cpp | 652 TextRunPaintInfo textRunPaintInfo(textRun); in paintTextWithShadows() local 653 textRunPaintInfo.from = startPosition; in paintTextWithShadows() 654 textRunPaintInfo.to = endPosition; in paintTextWithShadows() 655 textRunPaintInfo.bounds = FloatRect(textOrigin, textSize); in paintTextWithShadows() 656 scaledFont.drawText(context, textRunPaintInfo, textOrigin); in paintTextWithShadows()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | PopupListBox.cpp | 495 TextRunPaintInfo textRunPaintInfo(textRun); in paintRow() local 496 textRunPaintInfo.bounds = rowRect; in paintRow() 497 gc->drawBidiText(itemFont, textRunPaintInfo, IntPoint(textX, textY)); in paintRow()
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | CanvasRenderingContext2D.cpp | 2235 TextRunPaintInfo textRunPaintInfo(textRun); in drawTextInternal() local 2236 textRunPaintInfo.bounds = FloatRect(location.x() - fontMetrics.height() / 2, in drawTextInternal() 2241 inflateStrokeRect(textRunPaintInfo.bounds); in drawTextInternal() 2244 if (!computeDirtyRect(textRunPaintInfo.bounds, &dirtyRect)) in drawTextInternal() 2253 c->drawBidiText(font, textRunPaintInfo, FloatPoint(0, 0), Font::UseFallbackIfFontNotReady); in drawTextInternal() 2255 c->drawBidiText(font, textRunPaintInfo, location, Font::UseFallbackIfFontNotReady); in drawTextInternal()
|