Searched defs:drawText (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DWebFontImpl.cpp90 void WebFontImpl::drawText(WebCanvas* canvas, const WebTextRun& run, const WebFloatPoint& leftBaseline, function in class:WebKit::WebFontImpl
104 m_font.drawText(&gc, run, leftBaseline, from, to);
/external/webkit/Source/WebCore/platform/graphics/
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
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.
/external/skia/src/core/
H A DSkDevice.cpp187 void SkDevice::drawText(const SkDraw& draw, const void* text, size_t len, function in class:SkDevice
189 draw.drawText((const char*)text, len, x, y, paint);
H A DSkPictureRecord.cpp259 void SkPictureRecord::drawText(const void* text, size_t byteLength, SkScalar x, function in class:SkPictureRecord
H A DSkCanvas.cpp1387 void SkCanvas::drawText(const void* text, size_t byteLength, function in class:SkCanvas
1393 iter.fDevice->drawText(iter, text, byteLength, x, y, dfp.paint());
H A DSkDraw.cpp1524 void SkDraw::drawText(const char text[], size_t byteLength, function in class:SkDraw
/external/skia/src/utils/
H A DSkNWayCanvas.cpp210 void SkNWayCanvas::drawText(const void* text, size_t byteLength, SkScalar x, function in class:SkNWayCanvas
214 iter->drawText(text, byteLength, x, y, paint);
H A DSkProxyCanvas.cpp103 void SkProxyCanvas::drawText(const void* text, size_t byteLength, SkScalar x, function in class:SkProxyCanvas
105 fProxy->drawText(text, byteLength, x, y, paint);
H A DSkDumpCanvas.cpp318 void SkDumpCanvas::drawText(const void* text, size_t byteLength, SkScalar x, function in class:SkDumpCanvas
322 this->dump(kDrawText_Verb, &paint, "drawText(%s [%d] %g %g)", str.c_str(),
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPainterOpenVG.cpp1111 void PainterOpenVG::drawText(VGFont vgFont, Vector<VGuint>& characters, VGfloat* adjustmentsX, VGfloat* adjustmentsY, const FloatPoint& point) function in class:WebCore::PainterOpenVG
/external/webkit/Source/WebKit/android/jni/
H A DPictureSet.cpp811 canvas->drawText(location, len, x, y, paint);
915 virtual void drawText(const void* , size_t byteLength, SkScalar , function in class:android::IsEmptyCanvas
/external/webkit/Source/WebKit/android/nav/
H A DFindCanvas.cpp190 canvas->drawText(glyphs, countInBytes, pos[0] + before, y, paint);
269 void FindCanvas::drawText(const void* text, size_t byteLength, SkScalar x, function in class:android::FindCanvas
300 // Need a quick way to know a maximum distance between drawText calls to know if
427 // user is looking for the string "jjog" in the drawText call for
447 // At this point, we have searched all of the text in the current drawText
465 // This string doesn't go into the next drawText, so reset our working
H A DCachedRoot.cpp180 virtual void drawText(const void* text, size_t byteLength, SkScalar x, function in class:android::BoundsCanvas
184 INHERITED::drawText(text, byteLength, x, y, paint);
975 virtual void drawText(const void* text, size_t byteLength, SkScalar x, function in class:android::RingCanvas
978 INHERITED::drawText(text, byteLength, x, y, paint);
/external/skia/src/pdf/
H A DSkPDFDevice.cpp787 void SkPDFDevice::drawText(const SkDraw& d, const void* text, size_t len, function in class:SkPDFDevice
/external/webkit/Source/WebCore/platform/graphics/android/
H A DLayerAndroid.cpp103 virtual void drawText(const void*, size_t byteLength, SkScalar, function in class:WebCore::HasTextCanvas
/external/skia/samplecode/
H A DSampleApp.cpp527 static void drawText(SkCanvas* canvas, SkString string, SkScalar left, SkScalar top, SkPaint& paint) function
541 canvas->drawText(c_str, size, left + SK_Scalar1, top + SK_Scalar1, paint);
544 canvas->drawText(c_str, size, left, top, paint);
701 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
706 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
712 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
718 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
724 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
/external/webkit/Source/WebCore/platform/graphics/wince/
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

Completed in 523 milliseconds