/external/webkit/Source/WebCore/platform/mac/ |
ScrollViewMac.mm | 31 #import "IntRect.h" 108 IntRect ScrollView::platformVisibleContentRect(bool includeScrollbars) const 111 IntRect result = enclosingIntRect([scrollView() documentVisibleRect]); 116 return IntRect(); 163 void ScrollView::platformRepaintContentRectangle(const IntRect& rect, bool now) 177 IntRect ScrollView::platformContentsToScreen(const IntRect& rect) const 187 return IntRect();
|
/external/webkit/Source/WebCore/platform/wx/ |
PopupMenuWx.h | 24 #include "IntRect.h" 48 virtual void show(const IntRect&, FrameView*, int index);
|
RenderThemeWx.cpp | 59 virtual bool paintCheckbox(RenderObject* o, const PaintInfo& i, const IntRect& r) 66 virtual bool paintRadio(RenderObject* o, const PaintInfo& i, const IntRect& r) 73 virtual void adjustRepaintRect(const RenderObject*, IntRect&); 76 virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&); 79 virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&); 84 virtual bool paintMenuList(RenderObject*, const PaintInfo&, const IntRect&); 87 virtual bool paintMenuListButton(RenderObject*, const PaintInfo&, const IntRect&); 166 void RenderThemeWx::adjustRepaintRect(const RenderObject* o, IntRect& r) 263 bool RenderThemeWx::paintButton(RenderObject* o, const PaintInfo& i, const IntRect& r) 269 IntRect rect = r; [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderThemeChromiumMac.mm | 108 bool RenderThemeChromiumMac::paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 113 bool RenderThemeChromiumMac::paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 118 bool RenderThemeChromiumMac::paintMediaSliderTrack(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 123 bool RenderThemeChromiumMac::paintMediaControlsBackground(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 141 bool RenderThemeChromiumMac::paintMediaVolumeSliderContainer(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 146 bool RenderThemeChromiumMac::paintMediaVolumeSliderTrack(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 151 bool RenderThemeChromiumMac::paintMediaVolumeSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) 156 bool RenderThemeChromiumMac::paintMediaSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
|
RenderReplaced.cpp | 131 IntRect borderRect = IntRect(tx, ty, width(), height()); 152 IntRect selectionPaintingRect = localSelectionRect(); 305 IntRect RenderReplaced::selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisibleContent) 310 return IntRect(); 312 IntRect rect = localSelectionRect(); 321 IntRect RenderReplaced::localSelectionRect(bool checkWhetherSelected) const 324 return IntRect(); 328 return IntRect(0, 0, width(), height()); 333 return IntRect(0, newLogicalTop, width(), root->selectionHeight()) [all...] |
RenderLayer.cpp | 344 IntRect newRect = renderer()->clippedOverflowRectForRepaint(repaintContainer); 345 IntRect newOutlineBox = renderer()->outlineBoundsForRepaint(repaintContainer, cachedOffset); 361 m_repaintRect = IntRect(); 362 m_outlineBox = IntRect(); 397 IntRect RenderLayer::repaintRectIncludingDescendants() const 399 IntRect repaintRect = m_repaintRect; 680 IntRect lineBox = inlineFlow->linesBoundingBox(); 759 const IntRect borderBox = toRenderBox(renderer())->borderBoxRect(); 784 const IntRect borderBox = toRenderBox(renderer())->borderBoxRect(); 922 static IntRect transparencyClipBox(const RenderLayer* l, const RenderLayer* rootLayer, PaintBehavior paintBehavio (…) [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGHiddenContainer.h | 47 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject*) { return IntRect(); }
|
RenderSVGModelObject.cpp | 46 IntRect RenderSVGModelObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) 51 void RenderSVGModelObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) 64 IntRect RenderSVGModelObject::outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPoint*) const 66 IntRect box = enclosingIntRect(repaintRectInLocalCoordinates()); 73 void RenderSVGModelObject::absoluteRects(Vector<IntRect>&, int, int)
|
/external/webkit/Source/WebKit/android/nav/ |
DrawExtra.h | 32 class IntRect; 43 virtual void draw(SkCanvas* , LayerAndroid* , IntRect* ) = 0;
|
/external/webkit/Source/WebKit2/PluginProcess/ |
PluginControllerProxy.h | 82 virtual void invalidate(const WebCore::IntRect&); 109 void geometryDidChange(const WebCore::IntRect& frameRect, const WebCore::IntRect& clipRect, const ShareableBitmap::Handle& backingStoreHandle); 132 void windowAndViewFramesChanged(const WebCore::IntRect& windowFrameInScreenCoordinates, const WebCore::IntRect& viewFrameInWindowCoordinates); 153 WebCore::IntRect m_frameRect; 154 WebCore::IntRect m_clipRect; 157 WebCore::IntRect m_dirtyRect;
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
TiledDrawingArea.cpp | 59 void TiledDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta) 65 void TiledDrawingArea::setNeedsDisplay(const IntRect& rect) 82 IntRect dirtyRect = m_dirtyRect; 83 m_dirtyRect = IntRect(); 137 void TiledDrawingArea::updateTile(int tileID, const IntRect& dirtyRect, float scale) 211 IntRect contentsRect; 218 contentsRect.intersect(IntRect(IntPoint::zero(), m_webPage->mainFrame()->coreFrame()->view()->contentsSize())); 222 UpdateChunk updateChunk(IntRect(IntPoint(contentsRect.x() * targetScale, contentsRect.y() * targetScale), targetSize));
|
PageOverlay.cpp | 64 IntRect PageOverlay::bounds() const 77 return IntRect(0, 0, width, height); 89 void PageOverlay::setNeedsDisplay(const IntRect& dirtyRect) 100 void PageOverlay::drawRect(GraphicsContext& graphicsContext, const IntRect& dirtyRect) 103 IntRect paintRect = intersection(dirtyRect, bounds());
|
/external/webkit/Source/WebCore/dom/ |
DocumentMarkerController.h | 37 class IntRect; 63 void setRenderedRectForMarker(Node*, const DocumentMarker&, const IntRect&); 64 void invalidateRenderedRectsForMarkersInRect(const IntRect&); 72 Vector<IntRect> renderedRectsForMarkers(DocumentMarker::MarkerType); 80 typedef std::pair<Vector<DocumentMarker>, Vector<IntRect> > MarkerMapVectorPair;
|
/external/webkit/Source/WebCore/page/ |
PrintContext.h | 34 class IntRect; 54 const IntRect& pageRect(size_t pageNumber) const { return m_pageRects[pageNumber]; } 55 const Vector<IntRect>& pageRects() const { return m_pageRects; } 66 void spoolRect(GraphicsContext& ctx, const IntRect&); 84 Vector<IntRect> m_pageRects;
|
/external/webkit/Source/WebCore/page/win/ |
FrameCGWin.cpp | 42 static void drawRectIntoContext(IntRect rect, FrameView* view, GraphicsContext* gc) 53 static HBITMAP imageFromRect(const Frame* frame, IntRect& ir) 89 IntRect ir(static_cast<int>(fr.x()), static_cast<int>(fr.y()), 102 IntRect topLevelRect; 103 IntRect paintingRect = renderer->paintingRootRect(topLevelRect);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebRect.h | 37 #include "IntRect.h" 69 WebRect(const WebCore::IntRect& r) 77 WebRect& operator=(const WebCore::IntRect& r) 86 operator WebCore::IntRect() const 88 return WebCore::IntRect(x, y, width, height);
|
/external/webkit/Source/WebKit/chromium/src/ |
WebPluginContainerImpl.cpp | 86 void WebPluginContainerImpl::setFrameRect(const IntRect& frameRect) 92 void WebPluginContainerImpl::paint(GraphicsContext* gc, const IntRect& damageRect) 120 IntRect windowRect = 121 IntRect(view->contentsToWindow(damageRect.location()), damageRect.size()); 127 void WebPluginContainerImpl::invalidateRect(const IntRect& rect) 134 IntRect dirtyRect = rect; 232 int WebPluginContainerImpl::printBegin(const IntRect& printableArea, 277 invalidateRect(static_cast<IntRect>(rect)); 286 IntRect damageRect = convertToContainingWindow(static_cast<IntRect>(rect)) [all...] |
WebScrollbarImpl.h | 64 virtual void invalidateScrollbarRect(WebCore::Scrollbar*, const WebCore::IntRect&); 65 virtual void invalidateScrollCornerRect(const WebCore::IntRect&); 67 virtual WebCore::IntRect scrollCornerRect() const { return WebCore::IntRect(); } 69 virtual void getTickmarks(Vector<WebCore::IntRect>&) const;
|
ChromeClientImpl.h | 105 virtual WebCore::IntRect windowResizerRect() const; 109 virtual void invalidateWindow(const WebCore::IntRect&, bool); 110 virtual void invalidateContentsAndWindow(const WebCore::IntRect&, bool); 111 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&, bool); 116 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll, 117 const WebCore::IntRect& clipRect); 119 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; 123 const WebCore::IntRect&, const WebCore::ScrollView*) const { } 180 const WebCore::IntRect& bounds [all...] |
/external/webkit/Source/WebKit2/UIProcess/win/ |
BackingStoreWin.cpp | 33 #include <WebCore/IntRect.h> 64 void BackingStore::paint(HDC dc, const IntRect& rect) 92 IntRect updateRect = updateInfo.updateRects[i]; 93 IntRect srcRect = updateRect; 100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
|
/external/webkit/Source/WebCore/platform/gtk/ |
RenderThemeGtk2.cpp | 99 static void adjustRectForFocus(GtkWidget* widget, IntRect& rect, bool ignoreInteriorFocusProperty = false) 112 void RenderThemeGtk::adjustRepaintRect(const RenderObject* renderObject, IntRect& rect) 158 static void paintToggle(RenderThemeGtk* theme, RenderObject* renderObject, const PaintInfo& info, const IntRect& rect, GtkWidget* widget) 177 IntRect buttonRect(IntPoint(), rect.size()); 189 IntRect focusRect(buttonRect); 200 bool RenderThemeGtk::paintCheckbox(RenderObject* renderObject, const PaintInfo& info, const IntRect& rect) 211 bool RenderThemeGtk::paintRadio(RenderObject* renderObject, const PaintInfo& info, const IntRect& rect) 229 bool RenderThemeGtk::paintButton(RenderObject* object, const PaintInfo& info, const IntRect& rect) 235 IntRect buttonRect(IntPoint(), rect.size()); 236 IntRect focusRect(buttonRect) [all...] |
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
TilingData.cpp | 38 #include "IntRect.h" 88 IntRect TilingData::tileBounds(int tile) const 99 return IntRect(x, y, width, height); 102 IntRect TilingData::tileBoundsWithBorder(int tile) const 104 IntRect bounds = tileBounds(tile); 121 bounds = IntRect(x1, y1, x2 - x1, y2 - y1); 191 IntRect TilingData::overlappedTileIndices(const WebCore::IntRect &srcRect) const 197 return IntRect(x, y, r - x, b - y); 200 IntRect TilingData::overlappedTileIndices(const WebCore::FloatRect &srcRect) cons [all...] |
/external/webkit/Source/WebKit/chromium/tests/ |
TransparencyWinTest.cpp | 111 IntRect(1, 1, 14, 12)); 115 EXPECT_TRUE(IntRect(1, 1, 14, 12) == helper.drawRect()); 128 IntRect(2, 2, 6, 6)); 135 EXPECT_TRUE(IntRect(4, 1, 12, 3) == helper.drawRect()); 150 IntRect(1, 1, 14, 12)); 155 EXPECT_TRUE(IntRect(1, 1, 14, 12) == helper.drawRect()); 164 IntRect(1, 1, 14, 12)); 169 EXPECT_TRUE(IntRect(0, 0, 14, 12) == helper.drawRect()); 180 IntRect(2, 2, 6, 6)); 187 EXPECT_TRUE(IntRect(0, 0, 12, 3) == helper.drawRect()) [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
GraphicsContextWinCE.cpp | 41 typedef void (*FuncGradientFillRectLinear)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, const Vector<Gradient::ColorStop>& stops); 42 typedef void (*FuncGradientFillRectRadial)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, float r0, float r1, const Vector<Gradient::ColorStop>& stops); 62 static inline IntRect roundRect(const FloatRect& r) 64 return IntRect(stableRound(r.x()), stableRound(r.y()), stableRound(r.maxX()) - stableRound(r.x()), stableRound(r.maxY()) - stableRound(r.y())); 151 return IntRect(l, t, r - l + 1, b - t + 1); 154 template<class T> static inline IntRect mapRect(const IntRect& rect, const T& transform) 156 return mapRect<T, IntRect, int>(rect, transform); 219 IntRect mapRect(const IntRect& rect) cons [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
GLWebViewState.h | 34 #include "IntRect.h" 208 double setupDrawing(IntRect& viewRect, SkRect& visibleRect, 209 IntRect& webViewRect, int titleBarHeight, 210 IntRect& screenClip, float scale); 215 bool drawGL(IntRect& rect, SkRect& viewport, IntRect* invalRect, 216 IntRect& webViewRect, int titleBarHeight, 217 IntRect& clip, float scale, 225 void addDirtyArea(const IntRect& rect); 256 void inval(const IntRect& rect) [all...] |