/external/webkit/Source/WebCore/platform/graphics/ |
H A D | GraphicsContext.cpp | 378 void GraphicsContext::drawText(const Font& font, const TextRun& run, const FloatPoint& point, int from, int to) function in class:WebCore::GraphicsContext 383 font.drawText(this, run, point, from, to); 424 font.drawText(this, subrun, currPoint); 427 // FIXME: Have Font::drawText return the width of what it drew so that we don't have to re-measure here.
|
H A D | Font.cpp | 127 void Font::drawText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const function in class:WebCore::Font
|
/external/webkit/Source/WebCore/rendering/ |
H A D | RenderListMarker.cpp | 1271 context->drawText(style()->font(), textRun, textOrigin); 1289 context->drawText(style()->font(), textRun, textOrigin); 1291 context->drawText(style()->font(), TextRun(suffixSpace, 2), textOrigin + IntSize(width, 0)); 1296 context->drawText(style()->font(), spaceSuffixRun, textOrigin); 1297 context->drawText(style()->font(), textRun, textOrigin + IntSize(width, 0));
|
H A D | InlineTextBox.cpp | 408 context->drawText(font, textRun, textOrigin + extraOffset, startOffset, endOffset); 414 context->drawText(font, textRun, textOrigin + extraOffset, 0, endOffset); 419 context->drawText(font, textRun, textOrigin + extraOffset, startOffset, truncationPoint);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
H A D | DrawUtils.java | 170 gc.drawText(c, x_, y_);
|
/external/skia/include/core/ |
H A D | SkCanvas.h | 702 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
|
/external/skia/samplecode/ |
H A D | SampleTextEffects.cpp | 353 canvas->drawText(str.c_str(), str.size(), x, y, paint);
|
H A D | SampleAll.cpp | 530 canvas->drawText(utf8, sizeof(utf8) - 1, x, y, paint); 688 canvas->drawText(str.c_str(), str.size(), x, y, paint);
|
H A D | SampleSlides.cpp | 704 canvas->drawText(str, len, x, y, paint);
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
H A D | PlatformCALayerWinInternal.cpp | 132 cg.drawText(font, TextRun(text), IntPoint(aBounds.origin.x + 5, aBounds.origin.y + 17));
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
H A D | FontWinCE.cpp | 68 graphicsContext->drawText(fontData, glyphBuffer, from, numGlyphs, point);
|
H A D | GraphicsContextWinCE.cpp | 1533 void GraphicsContext::drawText(const Font& font, const TextRun& run, const FloatPoint& point, int from, int to) function in class:WebCore::GraphicsContext 1541 font.drawText(this, run, point, from, to); 1558 font.drawText(&gc, run, IntPoint(0, font.fontMetrics().ascent()), from, to); 1571 void GraphicsContext::drawText(const SimpleFontData* fontData, const GlyphBuffer& glyphBuffer, function in class:WebCore::GraphicsContext
|
/external/webkit/Source/WebKit/android/plugins/ |
H A D | android_npapi.h | 648 void (*drawText)(ANPCanvas*, const void* text, uint32_t byteLength, member in struct:ANPCanvasInterfaceV0
|
/external/skia/src/pipe/ |
H A D | SkGPipeWrite.cpp | 115 virtual void drawText(const void* text, size_t byteLength, SkScalar x, 509 void SkGPipeCanvas::drawText(const void* text, size_t byteLength, SkScalar x,
|
H A D | SkGPipeRead.cpp | 285 canvas->drawText(text, len, xy[0], xy[1], state->paint());
|
/external/skia/src/views/ |
H A D | SkListView.cpp | 395 canvas->drawText(fStrCache[i].c_str(), fStrCache[i].size(), x, y, *p); 397 canvas->drawText(fStrCache[i + visibleCount].c_str(), fStrCache[i + visibleCount].size(), rite, y, *p);
|
/external/webkit/Source/WebCore/platform/mac/ |
H A D | DragImageMac.mm | 207 webCoreFont.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1 * point.y))));
|
/external/webkit/Source/WebKit/mac/Misc/ |
H A D | WebKitNSStringExtras.mm | 102 webCoreFont.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1 * point.y))));
|
/external/skia/src/gpu/ |
H A D | SkGpuDevice.cpp | 1740 void SkGpuDevice::drawText(const SkDraw& draw, const void* text, function in class:SkGpuDevice 1747 draw.drawText((const char*)text, byteLength, x, y, paint); 1763 this->INHERITED::drawText(myDraw, text, byteLength, x, y, paint);
|
/external/skia/src/utils/ |
H A D | SkDumpCanvas.cpp | 331 void SkDumpCanvas::drawText(const void* text, size_t byteLength, SkScalar x, function in class:SkDumpCanvas 335 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(),
|
/external/webkit/Source/WebCore/rendering/svg/ |
H A D | SVGInlineTextBox.cpp | 649 scaledFont.drawText(context, textRun, textOrigin + extraOffset, startPosition, endPosition);
|
/external/skia/src/core/ |
H A D | SkCanvas.cpp | 1703 void SkCanvas::drawText(const void* text, size_t byteLength, function in class:SkCanvas 1709 iter.fDevice->drawText(iter, text, byteLength, x, y, dfp.paint());
|
H A D | SkPicturePlayback.cpp | 668 canvas.drawText(text.text(), text.length(), x, y, paint); 680 canvas.drawText(text.text(), text.length(), ptr[0], ptr[1],
|
H A D | SkPictureRecord.cpp | 320 void SkPictureRecord::drawText(const void* text, size_t byteLength, SkScalar x, function in class:SkPictureRecord
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
H A D | FlyoutControlComposite.java | 892 gc.drawText(text, x, 0);
|