Searched refs:drawText (Results 101 - 125 of 136) sorted by relevance

123456

/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.cpp378 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 DFont.cpp127 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 DRenderListMarker.cpp1271 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 DInlineTextBox.cpp408 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 DDrawUtils.java170 gc.drawText(c, x_, y_);
/external/skia/include/core/
H A DSkCanvas.h702 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
/external/skia/samplecode/
H A DSampleTextEffects.cpp353 canvas->drawText(str.c_str(), str.size(), x, y, paint);
H A DSampleAll.cpp530 canvas->drawText(utf8, sizeof(utf8) - 1, x, y, paint);
688 canvas->drawText(str.c_str(), str.size(), x, y, paint);
H A DSampleSlides.cpp704 canvas->drawText(str, len, x, y, paint);
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp132 cg.drawText(font, TextRun(text), IntPoint(aBounds.origin.x + 5, aBounds.origin.y + 17));
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontWinCE.cpp68 graphicsContext->drawText(fontData, glyphBuffer, from, numGlyphs, point);
H A DGraphicsContextWinCE.cpp1533 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 Dandroid_npapi.h648 void (*drawText)(ANPCanvas*, const void* text, uint32_t byteLength, member in struct:ANPCanvasInterfaceV0
/external/skia/src/pipe/
H A DSkGPipeWrite.cpp115 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 DSkGPipeRead.cpp285 canvas->drawText(text, len, xy[0], xy[1], state->paint());
/external/skia/src/views/
H A DSkListView.cpp395 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 DDragImageMac.mm207 webCoreFont.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1 * point.y))));
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitNSStringExtras.mm102 webCoreFont.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1 * point.y))));
/external/skia/src/gpu/
H A DSkGpuDevice.cpp1740 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 DSkDumpCanvas.cpp331 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 DSVGInlineTextBox.cpp649 scaledFont.drawText(context, textRun, textOrigin + extraOffset, startPosition, endPosition);
/external/skia/src/core/
H A DSkCanvas.cpp1703 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 DSkPicturePlayback.cpp668 canvas.drawText(text.text(), text.length(), x, y, paint);
680 canvas.drawText(text.text(), text.length(), ptr[0], ptr[1],
H A DSkPictureRecord.cpp320 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 DFlyoutControlComposite.java892 gc.drawText(text, x, 0);

Completed in 498 milliseconds

123456