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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GapRects.h 26 #include "platform/geometry/LayoutRect.h"
31 const LayoutRect& left() const { return m_left; }
32 const LayoutRect& center() const { return m_center; }
33 const LayoutRect& right() const { return m_right; }
35 void uniteLeft(const LayoutRect& r) { m_left.unite(r); }
36 void uniteCenter(const LayoutRect& r) { m_center.unite(r); }
37 void uniteRight(const LayoutRect& r) { m_right.unite(r); }
40 operator LayoutRect() const
42 LayoutRect result = m_left;
55 LayoutRect m_left
    [all...]
RenderLayerRepainter.h 48 #include "platform/geometry/LayoutRect.h"
69 LayoutRect repaintRect() const { return m_repaintRect; }
70 LayoutRect repaintRectIncludingNonCompositingDescendants() const;
84 void setBackingNeedsRepaintInRect(const LayoutRect&); // r is in the coordinate space of the layer's render object
86 void setFilterBackendNeedsRepaintingInRect(const LayoutRect&);
99 LayoutRect m_repaintRect; // Cached repaint rects. Used by layout.
100 LayoutRect m_outlineBox;
RenderOverflowTest.cpp 34 #include "platform/geometry/LayoutRect.h"
43 void PrintTo(const LayoutRect& rect, std::ostream* os)
45 *os << "LayoutRect("
56 LayoutRect initialLayoutOverflow()
58 return LayoutRect(10, 10, 80, 80);
61 LayoutRect initialVisualOverflow()
63 return LayoutRect(0, 0, 100, 100);
81 m_overflow.addLayoutOverflow(LayoutRect(0, 10, 30, 10));
82 EXPECT_EQ(LayoutRect(0, 10, 90, 80), m_overflow.layoutOverflowRect());
87 m_overflow.addLayoutOverflow(LayoutRect(50, 50, 10, 20))
    [all...]
FilterEffectRenderer.h 32 #include "platform/geometry/LayoutRect.h"
64 bool prepareFilterEffect(RenderLayer*, const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect, const LayoutRect& layerRepaintRect);
68 const LayoutRect& repaintRect() const { return m_repaintRect; }
73 LayoutRect m_repaintRect;
105 LayoutRect computeSourceImageRectForDirtyRect(const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect);
LayoutRepainter.h 29 #include "platform/geometry/LayoutRect.h"
49 LayoutRect m_oldBounds;
50 LayoutRect m_oldOutlineBox;
RenderRegionSet.cpp 49 LayoutRect rect(flowThreadPortionRect());
58 LayoutRect layoutRect = flowThread()->layoutOverflowRect();
59 LayoutUnit logicalHeightWithOverflow = (isHorizontal ? layoutRect.maxY() : layoutRect.maxX()) - logicalTopOffset;
60 setFlowThreadPortionRect(LayoutRect(rect.x(), rect.y(), isHorizontal ? rect.width() : logicalHeightWithOverflow, isHorizontal ? logicalHeightWithOverflow : rect.height()));
RenderOverflow.h 24 #include "platform/geometry/LayoutRect.h"
43 RenderOverflow(const LayoutRect& layoutRect, const LayoutRect& visualRect)
44 : m_layoutOverflow(layoutRect)
49 const LayoutRect layoutOverflowRect() const { return m_layoutOverflow; }
50 const LayoutRect visualOverflowRect() const { return m_visualOverflow; }
51 LayoutRect contentsVisualOverflowRect() const { return m_contentsVisualOverflow; }
65 void addLayoutOverflow(const LayoutRect&);
66 void addVisualOverflow(const LayoutRect&)
    [all...]
RenderLayerFilterInfo.h 35 #include "platform/geometry/LayoutRect.h"
57 const LayoutRect& dirtySourceRect() const { return m_dirtySourceRect; }
58 void expandDirtySourceRect(const LayoutRect& rect) { m_dirtySourceRect.unite(rect); }
59 void resetDirtySourceRect() { m_dirtySourceRect = LayoutRect(); }
81 LayoutRect m_dirtySourceRect;
ScrollBehavior.h 59 class LayoutRect;
67 static LayoutRect getRectToExpose(const LayoutRect& visibleRect, const LayoutRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignment& alignY);
RenderRegion.h 55 void setFlowThreadPortionRect(const LayoutRect& rect) { m_flowThreadPortionRect = rect; }
56 LayoutRect flowThreadPortionRect() const { return m_flowThreadPortionRect; }
57 LayoutRect flowThreadPortionOverflowRect() const;
95 LayoutUnit logicalTopOfFlowThreadContentRect(const LayoutRect&) const;
96 LayoutUnit logicalBottomOfFlowThreadContentRect(const LayoutRect&) const;
138 virtual void repaintFlowThreadContent(const LayoutRect& repaintRect) const;
140 virtual void collectLayerFragments(LayerFragments&, const LayoutRect&, const LayoutRect&) { }
158 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPortionRect, bool isFirstPortion, bool isLastPortion) const
    [all...]
RenderBR.h 41 virtual LayoutRect selectionRectForRepaint(const RenderLayerModelObject* /*repaintContainer*/, bool /*clipToVisibleContent*/) OVERRIDE { return LayoutRect(); }
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RenderedDocumentMarker.h 44 void setRenderedRect(const LayoutRect& r) { m_renderedRect = r; }
45 const LayoutRect& renderedRect() const { return m_renderedRect; }
46 void invalidate(const LayoutRect&);
50 static const LayoutRect& invalidMarkerRect()
52 static const LayoutRect rect = LayoutRect(-1, -1, -1, -1);
56 LayoutRect m_renderedRect;
59 inline void RenderedDocumentMarker::invalidate(const LayoutRect& r)
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableHeaderContainer.h 49 virtual LayoutRect elementRect() const OVERRIDE;
52 LayoutRect m_headerRect;
AXMenuListPopup.h 52 virtual LayoutRect elementRect() const OVERRIDE { return LayoutRect(); }
AXTableColumn.h 57 virtual LayoutRect elementRect() const OVERRIDE;
61 LayoutRect m_columnRect;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.cpp 32 #include "platform/geometry/LayoutRect.h"
40 LayoutRect::LayoutRect(const FloatRect& r)
46 bool LayoutRect::intersects(const LayoutRect& other) const
54 bool LayoutRect::contains(const LayoutRect& other) const
60 void LayoutRect::intersect(const LayoutRect& other)
75 void LayoutRect::unite(const LayoutRect& other
    [all...]
LayoutRect.h 43 class PLATFORM_EXPORT LayoutRect {
45 LayoutRect() { }
46 LayoutRect(const LayoutPoint& location, const LayoutSize& size)
48 LayoutRect(LayoutUnit x, LayoutUnit y, LayoutUnit width, LayoutUnit height)
50 LayoutRect(const FloatPoint& location, const FloatSize& size)
52 LayoutRect(const IntRect& rect) : m_location(rect.location()), m_size(rect.size()) { }
54 explicit LayoutRect(const FloatRect&); // don't do this implicitly since it's lossy
137 bool intersects(const LayoutRect&) const;
138 bool contains(const LayoutRect&) const;
146 void intersect(const LayoutRect&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
GraphicsLayerDebugInfo.h 34 #include "platform/geometry/LayoutRect.h"
45 Vector<LayoutRect> m_currentLayoutRects;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.h 51 virtual LayoutRect shapeMarginLogicalBoundingBox() const OVERRIDE { return static_cast<LayoutRect>(shapeMarginBounds()); }
52 virtual LayoutRect shapePaddingLogicalBoundingBox() const OVERRIDE { return static_cast<LayoutRect>(shapePaddingBounds()); }
BoxShape.h 46 virtual LayoutRect shapeMarginLogicalBoundingBox() const OVERRIDE;
47 virtual LayoutRect shapePaddingLogicalBoundingBox() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGGradientStop.h 45 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObject*) const OVERRIDE { return LayoutRect(); }
RenderSVGHiddenContainer.h 45 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObject*) const OVERRIDE FINAL { return LayoutRect(); }
RenderSVGBlock.cpp 37 LayoutRect RenderSVGBlock::visualOverflowRect() const
39 LayoutRect borderRect = borderBoxRect();
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Caret.h 31 #include "platform/geometry/LayoutRect.h"
51 IntRect absoluteBoundsForLocalRect(Node*, const LayoutRect&) const;
53 void paintCaret(Node*, GraphicsContext*, const LayoutPoint&, const LayoutRect& clipRect) const;
55 const LayoutRect& localCaretRectWithoutUpdate() const { return m_caretLocalRect; }
66 static void repaintCaretForLocalRect(Node*, const LayoutRect&);
69 LayoutRect m_caretLocalRect; // caret rect in coords local to the renderer responsible for painting the caret
81 void paintDragCaret(Frame*, GraphicsContext*, const LayoutPoint&, const LayoutRect& clipRect) const;
  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.h 27 #include "platform/geometry/LayoutRect.h"
131 LayoutRect rect;
145 LayoutRect nodeRectInAbsoluteCoordinates(Node*, bool ignoreBorder = false);
146 LayoutRect frameRectInAbsoluteCoordinates(Frame*);
147 LayoutRect virtualRectForDirection(FocusDirection, const LayoutRect& startingRect, LayoutUnit width = 0);
148 LayoutRect virtualRectForAreaElementAndDirection(HTMLAreaElement*, FocusDirection);

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 910