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

1 2 3 4 5 6 7 8 91011

  /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...]
RenderRegion.h 48 void setFlowThreadPortionRect(const LayoutRect& rect) { m_flowThreadPortionRect = rect; }
49 LayoutRect flowThreadPortionRect() const { return m_flowThreadPortionRect; }
50 LayoutRect flowThreadPortionOverflowRect() const;
70 LayoutUnit logicalTopOfFlowThreadContentRect(const LayoutRect&) const;
71 LayoutUnit logicalBottomOfFlowThreadContentRect(const LayoutRect&) const;
85 virtual void repaintFlowThreadContent(const LayoutRect& repaintRect) const;
87 virtual void collectLayerFragments(LayerFragments&, const LayoutRect&, const LayoutRect&) { }
97 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPortionRect, bool isFirstPortion, bool isLastPortion) const
    [all...]
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...]
RenderLayerRepainter.h 48 #include "platform/geometry/LayoutRect.h"
68 LayoutRect repaintRect() const { return m_repaintRect; }
69 LayoutRect repaintRectIncludingNonCompositingDescendants() const;
81 void setBackingNeedsRepaintInRect(const LayoutRect&); // r is in the coordinate space of the layer's render object
83 void setFilterBackendNeedsRepaintingInRect(const LayoutRect&);
98 LayoutRect m_repaintRect; // Cached repaint rects. Used by layout.
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; }
55 void addLayoutOverflow(const LayoutRect&);
56 void addVisualOverflow(const LayoutRect&)
    [all...]
FilterEffectRenderer.h 32 #include "platform/geometry/LayoutRect.h"
60 bool prepareFilterEffect(RenderLayer*, const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect, const LayoutRect& layerRepaintRect);
64 const LayoutRect& repaintRect() const { return m_repaintRect; }
69 LayoutRect m_repaintRect;
101 LayoutRect computeSourceImageRectForDirtyRect(const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect);
RenderLayerFilterInfo.h 35 #include "platform/geometry/LayoutRect.h"
56 const LayoutRect& dirtySourceRect() const { return m_dirtySourceRect; }
57 void expandDirtySourceRect(const LayoutRect& rect) { m_dirtySourceRect.unite(rect); }
58 void resetDirtySourceRect() { m_dirtySourceRect = LayoutRect(); }
74 LayoutRect m_dirtySourceRect;
RenderRegion.cpp 69 LayoutRect RenderRegion::flowThreadPortionOverflowRect() const
74 LayoutRect RenderRegion::overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPortionRect, bool isFirstPortion, bool isLastPortion) const
81 LayoutRect flowThreadOverflow = m_flowThread->visualOverflowRect();
84 LayoutRect clipRect;
90 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
96 clipRect = LayoutRect(minX, minY, maxX - minX, maxY - minY);
135 void RenderRegion::repaintFlowThreadContent(const LayoutRect& repaintRect) const
140 void RenderRegion::repaintFlowThreadContentRectangle(const LayoutRect& repaintRect, const LayoutRect& flowThreadPortionRect, const LayoutRect& flowThreadPortionOverflowRect, const LayoutPoint& region (…)
    [all...]
ScrollAlignment.h 59 class LayoutRect;
67 static LayoutRect getRectToExpose(const LayoutRect& visibleRect, const LayoutRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignment& alignY);
RenderBR.h 39 virtual LayoutRect selectionRectForPaintInvalidation(const RenderLayerModelObject* /*paintInvalidationContainer*/, bool /*clipToVisibleContent*/) OVERRIDE { return LayoutRect(); }
LayoutRepainter.h 29 #include "platform/geometry/LayoutRect.h"
49 LayoutRect m_oldBounds;
RenderLayerClipper.h 93 LayoutRect childrenClipRect() const; // Returns the foreground clip rect of the layer in the document's coordinate space.
94 LayoutRect localClipRect() const; // Returns the background clip rect of the layer in the local coordinate space.
104 void calculateRects(const ClipRectsContext&, const LayoutRect& paintDirtyRect, LayoutRect& layerBounds,
RenderReplaced.h 39 LayoutRect replacedContentRect(const LayoutSize* overriddenIntrinsicSize = 0) const;
68 LayoutRect localSelectionRect(bool checkWhetherSelected = true) const; // This is in local coordinates, but it's a physical rect (so the top left corner is physical top left).
79 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer) const OVERRIDE;
85 virtual LayoutRect selectionRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, bool clipToVisibleContent = true) OVERRIDE FINAL;
  /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/platform/geometry/
LayoutRect.cpp 32 #include "platform/geometry/LayoutRect.h"
41 LayoutRect::LayoutRect(const FloatRect& r)
47 bool LayoutRect::intersects(const LayoutRect& other) const
55 bool LayoutRect::contains(const LayoutRect& other) const
61 void LayoutRect::intersect(const LayoutRect& other)
76 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/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;
AXSpinButton.cpp 48 LayoutRect AXSpinButton::elementRect() const
53 return LayoutRect();
97 LayoutRect AXSpinButtonPart::elementRect() const
102 LayoutRect parentRect = parentObject()->elementRect();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGHiddenContainer.h 45 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject*) const OVERRIDE FINAL { return LayoutRect(); }
RenderSVGGradientStop.h 46 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject*) const OVERRIDE { return LayoutRect(); }
  /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(LocalFrame*, GraphicsContext*, const LayoutPoint&, const LayoutRect& clipRect) const;
  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.h 26 #include "platform/geometry/LayoutRect.h"
131 LayoutRect rect;
145 LayoutRect nodeRectInAbsoluteCoordinates(Node*, bool ignoreBorder = false);
146 LayoutRect frameRectInAbsoluteCoordinates(LocalFrame*);
147 LayoutRect virtualRectForDirection(FocusType, const LayoutRect& startingRect, LayoutUnit width = 0);
148 LayoutRect virtualRectForAreaElementAndDirection(HTMLAreaElement&, FocusType);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayerDebugInfo.h 35 #include "platform/geometry/LayoutRect.h"
56 Vector<LayoutRect>& currentLayoutRects() { return m_currentLayoutRects; }
67 Vector<LayoutRect> m_currentLayoutRects;

Completed in 3806 milliseconds

1 2 3 4 5 6 7 8 91011