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

1 2

  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 89 virtual void clearRect(const FloatRect& rect);
PlatformGraphicsContextSkia.h 73 virtual void clearRect(const FloatRect& rect);
GraphicsContextAndroid.cpp 454 void GraphicsContext::clearRect(const FloatRect& rect)
460 platformContext()->clearRect(rect);
PlatformGraphicsContext.h 103 virtual void clearRect(const FloatRect& rect) = 0;
PlatformGraphicsContextRecording.cpp 246 void PlatformGraphicsContextRecording::clearRect(const FloatRect& rect)
248 mGraphicsOperationCollection->append(new GraphicsOperation::ClearRect(rect));
GraphicsOperation.h 530 class ClearRect : public Operation {
532 ClearRect(const FloatRect& rect) : m_rect(rect) {}
534 context->clearRect(m_rect);
PlatformGraphicsContextSkia.cpp 214 void PlatformGraphicsContextSkia::clearRect(const FloatRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.h 64 void clearRect(const FloatRect&);
ContentLayerChromium.cpp 81 context.clearRect(contentRect);
  /external/skia/src/gpu/
SkGpuDevice.cpp 714 SkIRect clearRect = SkIRect::MakeXYWH(
717 context->clear(&clearRect, 0x0);
784 SkIRect clearRect;
835 clearRect = SkIRect::MakeXYWH(
837 context->clear(&clearRect, 0x0);
855 clearRect = SkIRect::MakeXYWH(
857 context->clear(&clearRect, 0x0);
870 clearRect = SkIRect::MakeXYWH(
872 context->clear(&clearRect, 0x0);
873 clearRect = SkIRect::MakeXYWH
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
SummaryBar.js 121 ctx.clearRect(0, 0, 13, 24);
295 ctx.clearRect(x, y, w, (h * 2));
  /external/webkit/Source/WebCore/platform/graphics/
ShadowBlur.cpp 509 shadowContext->clearRect(FloatRect(0, 0, m_layerSize.width() + 1, m_layerSize.height() + 1));
549 shadowContext->clearRect(FloatRect(0, 0, m_layerSize.width() + 1, m_layerSize.height() + 1));
627 shadowContext->clearRect(templateBounds);
691 shadowContext->clearRect(FloatRect(0, 0, templateSize.width(), templateSize.height()));
    [all...]
GraphicsContext.h 335 void clearRect(const FloatRect&);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 239 public void clearRect(int x, int y, int width, int height)
241 graphics.clearRect(x, y, width, height);
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 443 RECT clearRect = { m_hudPosition.x(), m_hudPosition.y(), m_hudPosition.x() + windowWidth, m_hudPosition.y() + windowHeight };
444 InvalidateRect(m_fullscreenWindow->hwnd(), &clearRect, true);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 155 void clearRect(float x, float y, float width, float height);
CanvasRenderingContext2D.idl 62 void clearRect(in float x, in float y, in float width, in float height);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 268 void GraphicsContext::clearRect(const FloatRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 305 void GraphicsContext::clearRect(const FloatRect& rect)
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceFilter.cpp 250 sourceGraphicContext->clearRect(FloatRect(FloatPoint(), absoluteDrawingRegion.size()));
  /external/v8/benchmarks/spinning-balls/
v.js 273 this.ctx.clearRect(0, 0, this.width, this.height);
354 this.ctx.clearRect(0, 0, this.width, this.height);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 155 graphicsContext->clearRect(dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 321 void GraphicsContext::clearRect(const FloatRect& rect)
328 platformContext()->gpuCanvas()->clearRect(rect);
332 // Force a readback here (if we're using the GPU), since clearRect() is
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 159 this.canvasContext_.clearRect(0, 0, this.w, this.h);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 570 void GraphicsContext::clearRect(const FloatRect&)

Completed in 776 milliseconds

1 2