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

  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 68 virtual bool clipOut(const IntRect& r);
69 virtual bool clipOut(const Path& p);
GraphicsContextAndroid.cpp 287 void GraphicsContext::clipOut(const IntRect& r)
292 platformContext()->clipOut(r);
305 void GraphicsContext::clipOut(const Path& p)
310 platformContext()->clipOut(p);
PlatformGraphicsContext.h 100 virtual bool clipOut(const IntRect& r) = 0;
101 virtual bool clipOut(const Path& p) = 0;
PlatformGraphicsContextRecording.h 106 virtual bool clipOut(const IntRect& r);
107 virtual bool clipOut(const Path& p);
GraphicsOperation.h 259 ClipPath(const Path& path, bool clipout = false)
260 : m_path(path), m_clipOut(clipout), m_hasWindRule(false) {}
267 return context->clipOut(m_path);
279 class ClipOut : public Operation {
281 ClipOut(const IntRect& rect) : m_rect(rect) {}
283 return context->clipOut(m_rect);
PlatformGraphicsContextSkia.cpp 198 bool PlatformGraphicsContextSkia::clipOut(const IntRect& r)
203 bool PlatformGraphicsContextSkia::clipOut(const Path& path)
PlatformGraphicsContextRecording.cpp 736 bool PlatformGraphicsContextRecording::clipOut(const IntRect& r)
739 appendStateOperation(NEW_OP(ClipOut)(r));
743 bool PlatformGraphicsContextRecording::clipOut(const Path& path)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.h 78 void clipOut(const Path&);
GLES2Canvas.cpp 366 void GLES2Canvas::clipOut(const Path& path)
368 ASSERT(!"clipOut is unsupported in GLES2Canvas.\n");
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFieldset.cpp 173 graphicsContext->clipOut(IntRect(tx + legend->x(), clipTop, legend->width(), clipHeight));
177 graphicsContext->clipOut(IntRect(clipLeft, ty + legend->y(), clipWidth, legend->height()));
RenderBoxModelObject.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 71 context.clipOut(quadPath);
89 context.clipOut(clipQuadPath);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 379 void GraphicsContext::clipOut(const Path& path)
422 void GraphicsContext::clipOut(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 388 void GraphicsContext::clipOut(const Path& path)
420 void GraphicsContext::clipOut(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 365 void clipOut(const IntRect&);
439 void clipOut(const Path&);
GraphicsContext.cpp 583 clipOut(path);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 324 void GraphicsContext::clipOut(const Path&)
329 void GraphicsContext::clipOut(const IntRect&)
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 387 void GraphicsContext::clipOut(const IntRect& rect)
399 void GraphicsContext::clipOut(const Path& p)
405 platformContext()->gpuCanvas()->clipOut(p);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 1066 void GraphicsContext::clipOut(const Path& path)
1101 void GraphicsContext::clipOut(const IntRect& r)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 840 void GraphicsContext::clipOut(const IntRect& rect)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp     [all...]
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 506 context->clipOut(clip);
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 974 void GraphicsContext::clipOut(const IntRect& rect)
    [all...]

Completed in 217 milliseconds