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

1 2

  /external/skia/include/core/
SkStroke.h 44 void strokeRect(const SkRect& rect, SkPath*) const;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 101 virtual void strokeRect(const FloatRect& rect, float lineWidth);
GraphicsContextAndroid.cpp 462 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth)
468 platformContext()->strokeRect(rect, lineWidth);
PlatformGraphicsContext.h 142 virtual void strokeRect(const FloatRect& rect, float lineWidth) = 0;
PlatformGraphicsContextRecording.h 139 virtual void strokeRect(const FloatRect& rect, float lineWidth);
GraphicsOperation.h 544 class StrokeRect : public Operation {
546 StrokeRect(const FloatRect& rect, float lineWidth)
549 context->strokeRect(m_rect, m_lineWidth);
PlatformGraphicsContextSkia.cpp 601 void PlatformGraphicsContextSkia::strokeRect(const FloatRect& rect, float lineWidth)
PlatformGraphicsContextRecording.cpp 907 void PlatformGraphicsContextRecording::strokeRect(const FloatRect& rect, float lineWidth)
911 appendDrawingOperation(NEW_OP(StrokeRect)(rect, lineWidth), bounds);
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 157 void strokeRect(float x, float y, float width, float height);
158 void strokeRect(float x, float y, float width, float height, float lineWidth);
CanvasRenderingContext2D.idl 116 void strokeRect(in float x, in float y, in float width, in float height, in [Optional] float lineWidth);
163 [Custom] void strokeRect(/* 4 */);
CanvasRenderingContext2D.cpp 1019 void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height)
1023 strokeRect(x, y, width, height, state().m_lineWidth);
1026 void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height, float lineWidth)
1045 c->strokeRect(rect, lineWidth);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 228 strokeRect(FloatRect(finalFocusRect), 1.f);
316 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth)
  /external/webkit/Source/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 173 JSValue JSCanvasRenderingContext2D::strokeRect(ExecState* exec)
178 context->strokeRect(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
181 context->strokeRect(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
  /external/webkit/Examples/NetscapeInputMethodPlugin/
main.m 227 [NSBezierPath strokeRect:rect];
263 [NSBezierPath strokeRect:rect];
  /external/webkit/Source/WebCore/inspector/front-end/
SummaryBar.js 118 ctx.strokeRect(0.5, 0.5, 12, 12);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 98 m_data->m_view->StrokeRect(rect, getHaikuStrokeStyle());
225 m_data->m_view->StrokeRect(region.Frame(), B_MIXED_COLORS);
276 void GraphicsContext::strokeRect(const FloatRect& rect, float width)
283 m_data->m_view->StrokeRect(rect, getHaikuStrokeStyle());
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 459 drawingContext->strokeRect(tickRect, 1);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 337 void strokeRect(const FloatRect&, float lineWidth);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 575 void GraphicsContext::strokeRect(const FloatRect&, float)
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 642 context->strokeRect(bounds, 1.0f);
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 962 void GraphicsContext::strokeRect(const FloatRect& rect, float width)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp     [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp     [all...]

Completed in 1390 milliseconds

1 2