/external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/ |
IntRectMac.mm | 27 #include "platform/geometry/IntRect.h" 33 IntRect::operator NSRect() const 38 IntRect enclosingIntRect(const NSRect& rect) 44 return IntRect(l, t, r - l, b - t);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
PopupListBox.h | 44 class IntRect; 96 virtual void invalidateRect(const IntRect&) OVERRIDE; 97 virtual void paint(GraphicsContext*, const IntRect&) OVERRIDE; 99 virtual void setFrameRect(const IntRect&) OVERRIDE; 104 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE; 107 virtual IntRect scrollableAreaBoundingBox() const OVERRIDE; 114 virtual IntRect visibleContentRect(IncludeScrollbarsInRect = ExcludeScrollbars) const OVERRIDE; 119 virtual IntRect scrollCornerRect() const OVERRIDE { return IntRect(); } 184 virtual void invalidateScrollCornerRect(const IntRect&) OVERRIDE { [all...] |
WebPluginContainerImpl.h | 51 class IntRect; 89 virtual void setFrameRect(const IntRect&) OVERRIDE; 90 virtual void paint(GraphicsContext*, const IntRect&) OVERRIDE; 91 virtual void invalidateRect(const IntRect&) OVERRIDE; 170 bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const IntRect&, const IntRect&); 192 const IntRect& frameRect, 193 IntRect& windowRect, 194 IntRect& clipRect [all...] |
WebScrollbarThemePainter.cpp | 58 m_theme->paintTrackBackground(&context, m_scrollbar, IntRect(rect)); 65 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), BackTrackPart); 72 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), ForwardTrackPart); 79 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), BackButtonStartPart); 86 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), BackButtonEndPart); 93 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), ForwardButtonStartPart); 100 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), ForwardButtonEndPart); 107 m_theme->paintTickmarks(&context, m_scrollbar, IntRect(rect)); 114 m_theme->paintThumb(&context, m_scrollbar, IntRect(rect));
|
ViewportAnchor.h | 36 #include "platform/geometry/IntRect.h" 60 void setAnchor(const IntRect& outerViewRect, const IntRect& innerViewRect, const FloatSize& anchorInViewCoords);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerScrollableArea.h | 83 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE; 84 virtual void invalidateScrollCornerRect(const IntRect&) OVERRIDE; 87 virtual IntRect scrollCornerRect() const OVERRIDE; 88 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const OVERRIDE; 89 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const OVERRIDE; 97 virtual IntRect visibleContentRect(IncludeScrollbarsInRect) const OVERRIDE; 105 virtual IntRect scrollableAreaBoundingBox() const OVERRIDE; 139 IntRect touchResizerCornerRect(const IntRect& bounds) cons [all...] |
FilterEffectRenderer.h | 83 void setSourceImageRect(const IntRect& sourceImageRect) 88 virtual IntRect sourceImageRect() const OVERRIDE { return m_sourceDrawingRegion; } 99 IntRect outputRect() const { return lastEffect()->hasResult() ? lastEffect()->absolutePaintRect() : IntRect(); } 113 IntRect m_sourceDrawingRegion;
|
PaintInfo.h | 31 #include "platform/geometry/IntRect.h" 46 typedef HashMap<RenderWidget*, IntRect> OverlapTestRequestMap; 53 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, PaintBehavior newPaintBehavior, 108 static IntRect infiniteRect() { return IntRect(LayoutRect::infiniteRect()); } 116 IntRect rect;
|
RenderScrollbar.h | 52 void paintPart(GraphicsContext*, ScrollbarPart, const IntRect&); 54 IntRect buttonRect(ScrollbarPart); 55 IntRect trackRect(int startLength, int endLength); 56 IntRect trackPieceRectWithMargins(ScrollbarPart, const IntRect&);
|
RenderThemeChromiumSkia.cpp | 146 IntRect center(const IntRect& original, int width, int height) 153 return IntRect(x, y, width, height); 185 bool RenderThemeChromiumSkia::paintTextArea(RenderObject* o, const PaintInfo& i, const IntRect& r) 196 bool RenderThemeChromiumSkia::paintSearchField(RenderObject* o, const PaintInfo& i, const IntRect& r) 210 IntRect RenderThemeChromiumSkia::convertToPaintingRect(RenderObject* inputRenderer, const RenderObject* partRenderer, LayoutRect partRect, const IntRect& localOffset) const 222 bool RenderThemeChromiumSkia::paintSearchFieldCancelButton(RenderObject* cancelButtonObject, const PaintInfo& paintInfo, const IntRect& r) 242 IntRect paintingRect = convertToPaintingRect(inputRenderBox, cancelButtonObject, cancelButtonRect, r); 267 bool RenderThemeChromiumSkia::paintSearchFieldResultsDecoration(RenderObject* magnifierObject, const PaintInfo& paintInfo, const IntRect& r [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarTheme.cpp | 50 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect) 55 IntRect backButtonStartPaintRect; 56 IntRect backButtonEndPaintRect; 57 IntRect forwardButtonStartPaintRect; 58 IntRect forwardButtonEndPaintRect; 74 IntRect startTrackRect; 75 IntRect thumbRect; 76 IntRect endTrackRect; 77 IntRect trackPaintRect = trackRect(scrollbar, true); 82 IntRect track = trackRect(scrollbar) [all...] |
ScrollableArea.h | 132 virtual void invalidateScrollbar(Scrollbar*, const IntRect&); 134 virtual IntRect scrollCornerRect() const = 0; 135 virtual void invalidateScrollCorner(const IntRect&); 136 virtual void getTickmarks(Vector<IntRect>&) const { } 141 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& scrollbarRect) const 145 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar* scrollbar, const IntRect& parentRect) const 167 virtual IntRect visibleContentRect(IncludeScrollbarsInRect = ExcludeScrollbars) const; 180 virtual IntRect scrollableAreaBoundingBox() const = 0 [all...] |
ScrollView.cpp | 187 IntRect ScrollView::visibleContentRect(IncludeScrollbarsInRect scollbarInclusion) const 191 return IntRect(IntPoint(m_scrollOffset), expandedIntSize(visibleContentSize)); 384 IntRect oldRect(m_horizontalScrollbar->frameRect()); 385 IntRect hBarRect((shouldPlaceVerticalScrollbarOnLeft() && m_verticalScrollbar) ? m_verticalScrollbar->width() : 0, 404 IntRect oldRect(m_verticalScrollbar->frameRect()); 405 IntRect vBarRect(shouldPlaceVerticalScrollbarOnLeft() ? 0 : (width() - m_verticalScrollbar->width()), 490 invalidateRect(IntRect(0, 0, newVisibleSize.width() - oldVisibleSize.width(), newVisibleSize.height())); 492 invalidateRect(IntRect(oldVisibleSize.width(), 0, newVisibleSize.width() - oldVisibleSize.width(), newVisibleSize.height())); 495 invalidateRect(IntRect(0, oldVisibleSize.height(), newVisibleSize.width(), newVisibleSize.height() - oldVisibleSize.height())); 515 IntRect ScrollView::rectToCopyOnScroll() cons [all...] |
/external/chromium_org/third_party/WebKit/Source/web/painting/ |
PaintAggregator.cpp | 71 static int calculateArea(const IntRect& rect) 79 static IntRect subtractIntersection(const IntRect& a, const IntRect& b) 85 return IntRect(); 105 return IntRect(rx, ry, rr - rx, rb - ry); 110 static bool sharesEdge(const IntRect& a, const IntRect& b) 124 IntRect PaintAggregator::PendingUpdate::calculateScrollDamage() const 129 IntRect damagedRect [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
SmartClip.cpp | 46 static IntRect applyScaleWithoutCollapsingToZero(const IntRect& rect, float scale) 48 IntRect result = rect; 64 IntRect SmartClipData::rect() const 79 SmartClipData SmartClip::dataForRect(const IntRect& cropRect) 81 IntRect resizedCropRect = applyScaleWithoutCollapsingToZero(cropRect, 1 / pageScaleFactor()); 102 IntRect unitedRects = hitNodes[0]->pixelSnappedBoundingBox(); 126 IntRect minNodeRect = minNode->pixelSnappedBoundingBox(); 127 IntRect newNodeRect = newNode->pixelSnappedBoundingBox(); 151 IntRect nodeRect = node->pixelSnappedBoundingBox() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PrintContext.h | 38 class IntRect; 60 const IntRect& pageRect(size_t pageNumber) const { return m_pageRects[pageNumber]; } 61 const Vector<IntRect>& pageRects() const { return m_pageRects; } 80 void outputLinkAndLinkedDestinations(GraphicsContext&, Node*, const IntRect& pageRect); 83 Vector<IntRect> m_pageRects;
|
Chrome.h | 44 class IntRect; 64 virtual void invalidateContentsAndRootView(const IntRect&) OVERRIDE; 65 virtual void invalidateContentsForSlowScroll(const IntRect&) OVERRIDE; 66 virtual IntRect rootViewToScreen(const IntRect&) const OVERRIDE; 110 IntRect windowResizerRect() const;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ClientRect.h | 38 class IntRect; 47 static PassRefPtrWillBeRawPtr<ClientRect> create(const IntRect& rect) 67 explicit ClientRect(const IntRect&);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsLayerClient.h | 36 class IntRect; 66 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) = 0;
|
GraphicsContextTest.cpp | 83 EXPECT_EQ_RECT(IntRect(10, 10, 90, 90), context.opaqueRegion().asRect()); 87 EXPECT_EQ_RECT(IntRect(10, 10, 90, 90), context.opaqueRegion().asRect()); 91 EXPECT_EQ_RECT(IntRect(10, 10, 90, 90), context.opaqueRegion().asRect()); 95 EXPECT_EQ_RECT(IntRect(10, 10, 90, 90), context.opaqueRegion().asRect()); 99 EXPECT_EQ_RECT(IntRect(10, 10, 89, 90), context.opaqueRegion().asRect()); 103 EXPECT_EQ_RECT(IntRect(11, 10, 88, 90), context.opaqueRegion().asRect()); 107 EXPECT_EQ_RECT(IntRect(30, 30, 290, 290), context.opaqueRegion().asRect()); 111 EXPECT_EQ_RECT(IntRect(30, 30, 290, 290), context.opaqueRegion().asRect()); 115 EXPECT_EQ_RECT(IntRect(30, 30, 290, 290), context.opaqueRegion().asRect()); 119 EXPECT_EQ_RECT(IntRect(30, 30, 290, 290), context.opaqueRegion().asRect()) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FilterEffect.h | 28 #include "platform/geometry/IntRect.h" 77 PassRefPtr<Uint8ClampedArray> asUnmultipliedImage(const IntRect&); 78 PassRefPtr<Uint8ClampedArray> asPremultipliedImage(const IntRect&); 79 void copyUnmultipliedImage(Uint8ClampedArray* destination, const IntRect&); 80 void copyPremultipliedImage(Uint8ClampedArray* destination, const IntRect&); 98 IntRect drawingRegionOfInputImage(const IntRect&) const; 99 IntRect requestedRegionOfInputImageData(const IntRect&) const; 105 IntRect absolutePaintRect() const { return m_absolutePaintRect; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
MockImageResourceClient.h | 49 virtual void imageChanged(ImageResource*, const IntRect*) OVERRIDE
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
BackgroundImageGeometry.h | 9 #include "platform/geometry/IntRect.h" 26 IntRect destRect() const { return m_destRect; } 27 void setDestRect(const IntRect& destRect) 63 void clip(const IntRect&); 69 IntRect m_destRect;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/ |
CompositedLayerMapping.h | 47 IntRect localClipRectForSquashedLayer; 141 IntRect pixelSnappedCompositedBounds() const; 156 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& clip) OVERRIDE; 213 void computeGraphicsLayerParentLocation(const RenderLayer* compositingContainer, const IntRect& ancestorCompositingBounds, IntPoint& graphicsLayerParentLocation); 215 void updateMainGraphicsLayerGeometry(const IntRect& relativeCompositingBounds, const IntRect& localCompositingBounds, const IntPoint& graphicsLayerParentLocation); 218 void updateChildContainmentLayerGeometry(const IntRect& clippingBox, const IntRect& localCompositingBounds); 221 void updateTransformGeometry(const IntPoint& snappedOffsetFromCompositedAncestor, const IntRect& relativeCompositingBounds); 222 void updateForegroundLayerGeometry(const FloatSize& relativeCompositingBoundsSize, const IntRect& clippingBox) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebScrollbarThemeClientImpl.h | 54 virtual void setFrameRect(const IntRect&) OVERRIDE; 55 virtual IntRect frameRect() const OVERRIDE; 57 virtual void invalidateRect(const IntRect&) OVERRIDE; 59 virtual void getTickmarks(Vector<IntRect>&) const OVERRIDE;
|