HomeSort by relevance Sort by last modified time
    Searched refs:LineJoin (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/
GraphicsTypes.h 63 enum LineJoin { MiterJoin, RoundJoin, BevelJoin };
77 String lineJoinName(LineJoin);
78 bool parseLineJoin(const String&, LineJoin&);
GraphicsTypes.cpp 94 bool parseLineJoin(const String& s, LineJoin& join)
111 String lineJoinName(LineJoin join)
GraphicsContext.h 424 void setLineJoin(LineJoin);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 85 void setLineJoin(LineJoin);
GraphicsContextOpenVG.cpp 343 void GraphicsContext::setLineJoin(LineJoin lj)
PainterOpenVG.cpp 66 static VGJoinStyle toVGJoinStyle(LineJoin lineJoin)
68 switch (lineJoin) {
121 LineJoin strokeLineJoin;
606 void PainterOpenVG::setLineJoin(LineJoin lineJoin)
611 m_state->strokeLineJoin = lineJoin;
612 vgSeti(VG_STROKE_JOIN_STYLE, toVGJoinStyle(lineJoin));
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 67 static LineJoin initialJoinStyle() { return MiterJoin; }
140 void setJoinStyle(LineJoin val) { svg_inherited_flags._joinStyle = val; }
289 LineJoin joinStyle() const { return (LineJoin) svg_inherited_flags._joinStyle; }
358 unsigned _joinStyle : 2; // LineJoin
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 90 String lineJoin() const;
222 LineJoin getLineJoin() const { return state().m_lineJoin; }
246 LineJoin m_lineJoin;
CanvasRenderingContext2D.cpp 425 String CanvasRenderingContext2D::lineJoin() const
432 LineJoin join;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 308 void GraphicsContext::setLineJoin(LineJoin lineJoin)
314 switch (lineJoin) {
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 590 void GraphicsContext::setLineJoin(LineJoin)
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValueMappings.h     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 125 static inline Qt::PenJoinStyle toQtLineJoin(LineJoin lj)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 123 SkPaint::Join lineJoin;
140 , lineJoin(SkPaint::kDefault_Join)
155 , lineJoin(other.lineJoin)
331 paint->setStrokeJoin(m_state->lineJoin);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 1000 void GraphicsContext::setLineJoin(LineJoin lineJoin)
1006 switch (lineJoin) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 969 void GraphicsContext::setLineJoin(LineJoin join)
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderTreeAsText.cpp 260 static TextStream& operator<<(TextStream& ts, LineJoin style)
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]

Completed in 299 milliseconds