Searched defs:rightPadding (Results 1 - 6 of 6) 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);
110 int rightPadding() const { return m_rightPadding; } function in class:WebCore::HitTestResult
154 // x = p.x() - rightPadding
156 // width = leftPadding + rightPadding + 1
H A DHitTestResult.cpp74 HitTestResult::HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
78 , m_rightPadding(rightPadding)
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.cpp65 rightPadding, enumerator in enum:WebCore::__anon14717
899 return popupButtonPadding(controlSizeForFont(style))[rightPadding];
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp975 int rightPadding = max(0, m_popupClient->clientPaddingLeft() - m_popupClient->clientInsetLeft()); local
976 int remainingWidth = rowRect.width() - rightPadding;
983 imageRect.setX(rowRect.width() - rightPadding - imageRect.width());
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp1328 unsigned rightPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Right); 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
1567 , m_rightPadding(rightPadding)
/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 149 milliseconds