HomeSort by relevance Sort by last modified time
    Searched refs:RasterShapeIntervals (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RasterShape.h 41 class RasterShapeIntervals {
43 RasterShapeIntervals(unsigned size, unsigned shapeMargin = 0)
56 PassOwnPtr<RasterShapeIntervals> computeShapeMarginIntervals(unsigned shapeMargin) const;
90 RasterShape(PassOwnPtr<RasterShapeIntervals> intervals, const IntSize& imageSize)
105 const RasterShapeIntervals& marginIntervals() const;
106 const RasterShapeIntervals& paddingIntervals() const;
108 OwnPtr<RasterShapeIntervals> m_intervals;
109 mutable OwnPtr<RasterShapeIntervals> m_marginIntervals;
RasterShape.cpp 76 void RasterShapeIntervals::appendInterval(int y, int x1, int x2)
83 void RasterShapeIntervals::uniteMarginInterval(int y, const IntShapeInterval& interval)
109 bool RasterShapeIntervals::contains(const IntRect& rect) const
131 bool RasterShapeIntervals::getIntervalX1Values(int y1, int y2, int minIntervalWidth, Vector<int>& result) const
149 bool RasterShapeIntervals::firstIncludedIntervalY(int minY, const IntSize& minSize, LayoutUnit& result) const
181 void RasterShapeIntervals::getIncludedIntervals(int y1, int y2, IntShapeIntervals& result) const
201 void RasterShapeIntervals::getExcludedIntervals(int y1, int y2, IntShapeIntervals& result) const
219 PassOwnPtr<RasterShapeIntervals> RasterShapeIntervals::computeShapeMarginIntervals(unsigned shapeMargin) const
221 OwnPtr<RasterShapeIntervals> result = adoptPtr(new RasterShapeIntervals(size(), shapeMargin))
    [all...]
Shape.cpp 221 OwnPtr<RasterShapeIntervals> intervals = adoptPtr(new RasterShapeIntervals(imageSize.height()));

Completed in 37 milliseconds