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

/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.h53 HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
108 static IntRect rectForPoint(const IntPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
111 int bottomPadding() const { return m_bottomPadding; } function in class:WebCore::HitTestResult
157 // height = topPadding + bottomPadding + 1
H A DHitTestResult.cpp74 HitTestResult::HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
79 , m_bottomPadding(bottomPadding)
83 m_isRectBased = topPadding || rightPadding || bottomPadding || leftPadding;
616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
621 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding);
H A DRenderThemeSafari.cpp66 bottomPadding, enumerator in enum:WebCore::__anon14717
920 return popupButtonPadding(controlSizeForFont(style))[bottomPadding];
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp1329 unsigned bottomPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Down); local
1335 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding)
1343 TouchAdjuster touchAdjuster(topPadding, rightPadding, bottomPadding, leftPadding);
1565 QWebPagePrivate::TouchAdjuster::TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
1568 , m_bottomPadding(bottomPadding)
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1099 PassRefPtr<NodeList> Document::nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const argument
1119 else if (!frameView->visibleContentRect().intersects(HitTestResult::rectForPoint(point, topPadding, rightPadding, bottomPadding, leftPadding)))
1126 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) {
1131 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding);

Completed in 4605 milliseconds