HomeSort by relevance Sort by last modified time
    Searched refs:setLineCap (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 60 virtual void setLineCap(LineCap cap);
GraphicsContextAndroid.cpp 466 void GraphicsContext::setLineCap(LineCap cap)
470 platformContext()->setLineCap(cap);
PlatformGraphicsContextRecording.cpp 103 void PlatformGraphicsContextRecording::setLineCap(LineCap cap)
105 PlatformGraphicsContext::setLineCap(cap);
106 mGraphicsOperationCollection->append(new GraphicsOperation::SetLineCap(cap));
PlatformGraphicsContext.h 66 virtual void setLineCap(LineCap cap);
PlatformGraphicsContext.cpp 265 void PlatformGraphicsContext::setLineCap(LineCap cap)
278 ALOGD("PlatformGraphicsContextSkia::setLineCap: unknown LineCap %d\n", cap);
GraphicsOperation.h 258 class SetLineCap : public Operation {
260 SetLineCap(LineCap cap) : m_cap(cap) {}
262 context->setLineCap(m_cap);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 84 void setLineCap(LineCap);
GraphicsContextOpenVG.cpp 327 void GraphicsContext::setLineCap(LineCap lc)
332 m_data->setLineCap(lc);
PainterOpenVG.cpp 596 void PainterOpenVG::setLineCap(LineCap lineCap)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h 119 void setLineCap(SkPaint::Cap);
GraphicsContextSkia.cpp 922 void GraphicsContext::setLineCap(LineCap cap)
928 platformContext()->setLineCap(SkPaint::kButt_Cap);
931 platformContext()->setLineCap(SkPaint::kRound_Cap);
934 platformContext()->setLineCap(SkPaint::kSquare_Cap);
    [all...]
PlatformContextSkia.cpp 462 void PlatformContextSkia::setLineCap(SkPaint::Cap lc)
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSquareRoot.cpp 153 info.context->setLineCap(SquareCap);
RenderMathMLRoot.cpp 187 info.context->setLineCap(SquareCap);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 88 void setLineCap(const String&);
CanvasRenderingContext2D.idl 95 void setLineCap(in DOMString cap);
CanvasRenderingContext2D.cpp 98 c->setLineCap(m_canvasContext->getLineCap());
413 void CanvasRenderingContext2D::setLineCap(const String& s)
422 c->setLineCap(cap);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 287 void GraphicsContext::setLineCap(LineCap lineCap)
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.cpp 331 context->setLineCap(svgStyle->capStyle());
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 420 void setLineCap(LineCap);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 580 void GraphicsContext::setLineCap(LineCap)
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 975 void GraphicsContext::setLineCap(LineCap lineCap)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]

Completed in 462 milliseconds

1 2