Searched refs:textRunPaintInfo (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextPainter.cpp182 void TextPainter::paintInternalRun(TextRunPaintInfo& textRunPaintInfo, int from, int to, TextBlobPtr* cachedTextBlob) argument
184 textRunPaintInfo.from = from;
185 textRunPaintInfo.to = to;
188 m_graphicsContext->drawEmphasisMarks(m_font, textRunPaintInfo, m_emphasisMark, m_textOrigin + IntSize(0, m_emphasisMarkOffset));
199 textBlob = m_font.buildTextBlob(textRunPaintInfo, m_textOrigin, m_graphicsContext->couldUseLCDRenderedText());
204 m_graphicsContext->drawText(m_font, textRunPaintInfo, m_textOrigin);
211 TextRunPaintInfo textRunPaintInfo(m_run);
212 textRunPaintInfo.bounds = m_textBounds;
214 paintInternalRun<Step>(textRunPaintInfo, startOffset, endOffset, cachedTextBlob);
217 paintInternalRun<Step>(textRunPaintInfo,
[all...]
H A DRenderFileUploadControl.cpp133 TextRunPaintInfo textRunPaintInfo(textRun);
135 textRunPaintInfo.bounds = FloatRect(textX.toFloat(), textY.toFloat() - style()->fontMetrics().ascent(),
141 paintInfo.context->drawBidiText(font, textRunPaintInfo, IntPoint(roundToInt(textX), roundToInt(textY)));
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DListMarkerPainter.cpp175 TextRunPaintInfo textRunPaintInfo(textRun);
176 textRunPaintInfo.bounds = marker;
180 context->drawText(font, textRunPaintInfo, textOrigin);
205 context->drawText(font, textRunPaintInfo, textOrigin);
209 context->drawText(font, textRunPaintInfo, textOrigin + IntSize(font.width(suffixRun), 0));
H A DImagePainter.cpp136 TextRunPaintInfo textRunPaintInfo(textRun);
137 textRunPaintInfo.bounds = FloatRect(textRectOrigin, FloatSize(textWidth, fontMetrics.height()));
145 context->drawBidiText(font, textRunPaintInfo, textOrigin);
147 context->drawBidiText(font, textRunPaintInfo, textOrigin);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.cpp594 TextRunPaintInfo textRunPaintInfo(textRun);
595 textRunPaintInfo.from = startPosition;
596 textRunPaintInfo.to = endPosition;
599 textRunPaintInfo.bounds = FloatRect(textOrigin.x(), textOrigin.y() - baseline,
602 scaledFont.drawText(context, textRunPaintInfo, textOrigin);
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupListBox.cpp483 TextRunPaintInfo textRunPaintInfo(textRun);
484 textRunPaintInfo.bounds = rowRect;
485 gc->drawBidiText(itemFont, textRunPaintInfo, IntPoint(textX, textY));
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp2201 TextRunPaintInfo textRunPaintInfo(textRun);
2202 textRunPaintInfo.bounds = FloatRect(location.x() - fontMetrics.height() / 2,
2207 inflateStrokeRect(textRunPaintInfo.bounds);
2228 c->drawBidiText(font, textRunPaintInfo, location, Font::UseFallbackIfFontNotReady);
2234 c->drawBidiText(font, textRunPaintInfo, location, Font::UseFallbackIfFontNotReady);
2238 if (computeDirtyRect(textRunPaintInfo.bounds, clipBounds, &dirtyRect)) {
2239 c->drawBidiText(font, textRunPaintInfo, location, Font::UseFallbackIfFontNotReady);

Completed in 176 milliseconds