Searched defs:bottomPadding (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestLocation.cpp73 HitTestLocation::HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
75 , m_boundingBox(rectForPoint(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding))
78 , m_isRectBased(topPadding || rightPadding || bottomPadding || leftPadding)
169 IntRect HitTestLocation::rectForPoint(const LayoutPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
174 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding);
H A DHitTestLocation.h52 HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
69 static IntRect rectForPoint(const LayoutPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
72 int bottomPadding() const { return m_boundingBox.maxY() - roundedPoint().y() - 1; } function in class:WebCore::HitTestLocation
H A DHitTestResult.cpp65 HitTestResult::HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
66 : m_hitTestLocation(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding)
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp1428 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState& exceptionState) const
1456 if (!request.ignoreClipping() && !frameView->visibleContentRect().intersects(HitTestLocation::rectForPoint(point, topPadding, rightPadding, bottomPadding, leftPadding)))
1463 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) {
1469 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding);
1427 nodesFromRect(Document* document, int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState& exceptionState) const argument

Completed in 55 milliseconds