HomeSort by relevance Sort by last modified time
    Searched full:intrect (Results 626 - 650 of 887) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/WebKit/win/
WebView.h 34 #include <WebCore/IntRect.h>
848 void paintIntoWindow(HDC bitmapDC, HDC windowDC, const WebCore::IntRect& dirtyRect);
850 void addToDirtyRegion(const WebCore::IntRect&);
852 void scrollBackingStore(WebCore::FrameView*, int dx, int dy, const WebCore::IntRect& scrollViewRect, const WebCore::IntRect& clipRect);
854 void repaint(const WebCore::IntRect&, bool contentChanged, bool immediate = false, bool repaintContentOnly = false);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.cpp 32 #include <WebCore/IntRect.h>
145 void FindIndicator::draw(GraphicsContext& graphicsContext, const IntRect& dirtyRect)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginController.h 36 class IntRect;
45 virtual void invalidate(const WebCore::IntRect&) = 0;
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.h 37 #include "IntRect.h"
295 IntRect contentsRect() const { return m_contentsRect; }
296 virtual void setContentsRect(const IntRect& r) { m_contentsRect = r; }
319 void paintGraphicsLayerContents(GraphicsContext&, const IntRect& clip);
424 IntRect m_contentsRect;
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageDecoder.cpp 269 if (buffer.originalFrameRect().contains(IntRect(IntPoint(), scaledSize())))
327 IntRect frameRect(frameReader->x_offset, frameReader->y_offset, frameReader->width, frameReader->height);
340 buffer->setOriginalFrameRect(IntRect(left, top, right - left, bottom - top));
370 const IntRect& prevRect = prevBuffer->originalFrameRect();
372 if (!frameIndex || prevRect.contains(IntRect(IntPoint(), scaledSize()))) {
  /external/webkit/Source/WebCore/rendering/
RenderListItem.cpp 278 IntRect newLogicalVisualOverflowRect = box->logicalVisualOverflowRect(lineTop, lineBottom);
279 IntRect newLogicalLayoutOverflowRect = box->logicalLayoutOverflowRect(lineTop, lineBottom);
302 IntRect newLogicalVisualOverflowRect = box->logicalVisualOverflowRect(lineTop, lineBottom);
303 IntRect newLogicalLayoutOverflowRect = box->logicalLayoutOverflowRect(lineTop, lineBottom);
322 IntRect markerRect(markerLogicalLeft + lineOffset, blockOffset, m_marker->width(), m_marker->height());
RenderBlock.cpp     [all...]
RenderImage.cpp 137 void RenderImage::imageChanged(WrappedImagePtr newImage, const IntRect* rect)
169 void RenderImage::imageDimensionsChanged(bool imageSizeChanged, const IntRect* rect)
201 IntRect repaintRect;
264 context->drawRect(IntRect(tx + leftBorder + leftPad, ty + topBorder + topPad, cWidth, cHeight));
324 IntRect rect(IntPoint(tx + leftBorder + leftPad, ty + topBorder + topPad), contentSize);
384 void RenderImage::paintIntoRect(GraphicsContext* context, const IntRect& rect)
418 IntRect contentBox = contentBoxRect();
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.h 48 #include "IntRect.h"
340 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& clipRect);
341 void invalidateRootLayerRect(const WebCore::IntRect&);
408 void doPixelReadbackToCanvas(WebCanvas*, const WebCore::IntRect&);
524 WebCore::IntRect m_rootLayerScrollDamage;
WebFrameImpl.cpp 320 IntRect pageRect = m_pageRects[pageNumber];
331 IntRect pageRect = m_pageRects[pageNumber];
393 m_pageCount = m_plugin->printBegin(IntRect(printRect), m_printerDPI);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 523 void GraphicsContext::drawRect(const IntRect& rect)
670 void GraphicsContext::drawEllipse(const IntRect& rect)
699 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan)
758 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
854 void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, int thickness)
879 void GraphicsContext::clipOut(const IntRect& r)
1003 void GraphicsContext::drawFocusRing(const Vector<IntRect>&, int, int, const Color&)
    [all...]
LayerAndroid.h 135 IntRect clippedRect() const;
138 IntRect unclippedArea();
139 IntRect visibleArea();
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 41 #include "IntRect.h"
291 void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, int thickness)
387 void GraphicsContext::clipOut(const IntRect& rect)
500 void GraphicsContext::drawEllipse(const IntRect& elipseRect)
526 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int /* width */, int /* offset */, const Color& color)
715 void GraphicsContext::drawRect(const IntRect& rect)
821 void GraphicsContext::fillRoundedRect(const IntRect& rect,
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 134 IntRect oldWindowRect = m_windowRect;
135 IntRect oldClipRect = m_clipRect;
137 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
212 void PluginView::paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect)
338 void PluginView::paint(GraphicsContext* context, const IntRect& rect)
366 IntRect exposedRect(rect);
613 void PluginView::setNPWindowRect(const IntRect&)
644 Vector<IntRect> cutOutRects;
805 void PluginView::invalidateRect(const IntRect& rect)
833 IntRect r(rect->left, rect->top, rect->right - rect->left, rect->bottom - rect->top)
    [all...]
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 559 IntRect VisiblePosition::localCaretRect(RenderObject*& renderer) const
563 return IntRect();
569 return IntRect();
581 IntRect VisiblePosition::absoluteCaretBounds() const
584 IntRect localRect = localCaretRect(renderer);
586 return IntRect();
594 IntRect localRect = localCaretRect(renderer);
  /external/webkit/Source/WebCore/page/
FocusController.cpp 464 IntRect intersectionRect = intersection(candidate.rect, closest.rect);
488 void FocusController::findFocusCandidateInContainer(Node* container, const IntRect& startingRect, FocusDirection direction, KeyboardEvent* event, FocusCandidate& closest)
518 bool FocusController::advanceFocusDirectionallyInContainer(Node* container, const IntRect& startingRect, FocusDirection direction, KeyboardEvent* event)
523 IntRect newStartingRect = startingRect;
550 IntRect rect;
568 IntRect startingRect;
604 IntRect startingRect;
SpeechInput.cpp 96 bool SpeechInput::startRecognition(int listenerId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin* origin)
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.cpp 229 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect);
241 IntRect m_dirtyRect;
363 void TextureMapperGL::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& modelViewMatrix, float opacity, const BitmapTexture* maskTexture)
468 PlatformGraphicsContext* BitmapTextureGL::beginPaint(const IntRect& dirtyRect)
504 GraphicsContext context(beginPaint(IntRect(0, 0, m_textureSize.width(), m_textureSize.height())));
597 void TextureMapperGL::setClip(const IntRect& rect)
604 void TextureMapperGL::paintToTarget(const BitmapTexture& aSurface, const IntSize& surfaceSize, const TransformationMatrix& transform, float opacity, const IntRect& visibleRect)
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 381 void PluginView::setNPWindowRect(const IntRect&)
444 IntRect oldWindowRect = m_windowRect;
445 IntRect oldClipRect = m_clipRect;
469 void PluginView::paint(GraphicsContext* context, const IntRect& rect)
491 IntRect targetRect(frameRect());
534 void PluginView::invalidateRect(const IntRect& rect)
548 IntRect r(rect->left, rect->top, rect->right - rect->left, rect->bottom - rect->top);
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 45 #include "IntRect.h"
257 void GraphicsContext::drawRect(const IntRect& rect)
372 void GraphicsContext::drawEllipse(const IntRect& rect)
399 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
649 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int /* offset */, const Color& color)
850 void GraphicsContext::setURLForRect(const KURL& link, const IntRect& destRect)
877 void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, int thickness)
1101 void GraphicsContext::clipOut(const IntRect& r)
1125 void GraphicsContext::fillRoundedRect(const IntRect& r, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 29 #include "IntRect.h"
955 void PainterOpenVG::drawArc(const IntRect& rect, int startAngle, int angleSpan, VGbitfield specifiedPaintModes)
989 void PainterOpenVG::drawEllipse(const IntRect& rect, VGbitfield specifiedPaintModes)
1074 IntRect drawnTiles = tiledImage->tilesInRect(src);
    [all...]
  /external/webkit/Source/WebCore/page/mac/
FrameMac.mm 272 m_view->paintContents(&graphicsContext, IntRect(rect));
306 IntRect topLevelRect;
330 IntRect topLevelRect;
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp 33 #include "IntRect.h"
304 IntRect AffineTransform::mapRect(const IntRect &rect) const
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 143 IntRect boxRect = textBox->calculateBoundaries();
158 IntRect boxRect = flowBox->calculateBoundaries();
172 IntRect childRect;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 174 bool NetscapePlugin::platformInvalidate(const IntRect&)
196 void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool /*isSnapshot*/)
228 IntRect exposedRect(dirtyRect);

Completed in 1294 milliseconds

<<21222324252627282930>>