Home
last modified time | relevance | path

Searched refs:rightPadding (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DHitTestResult.h53 …HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bo…
108 …static IntRect rectForPoint(const IntPoint&, unsigned topPadding, unsigned rightPadding, unsigned …
110 int rightPadding() const { return m_rightPadding; } in rightPadding() function
DHitTestResult.cpp74 …TestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned botto… in HitTestResult() argument
78 , m_rightPadding(rightPadding) in HitTestResult()
83 m_isRectBased = topPadding || rightPadding || bottomPadding || leftPadding; in HitTestResult()
616 …lt::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPadding, unsigned botto… in rectForPoint() argument
621 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding); in rectForPoint()
DRenderLineBoxList.cpp291 … int logicalPointEnd = (isHorizontal ? y + result.bottomPadding() : x + result.rightPadding()) + 1; in hitTest()
DRenderImage.cpp413 …HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottom… in nodeAtPoint()
DRenderThemeSafari.cpp65 rightPadding, enumerator
899 return popupButtonPadding(controlSizeForFont(style))[rightPadding]; in popupInternalPaddingRight()
DRenderLayer.cpp3160 …HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottom… in scrollTo()
3189 …HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottom… in scrollTo()
3246 …HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottom… in scrollTo()
DRenderThemeMac.mm120 rightPadding,
1194 return popupButtonPadding(controlSizeForFont(style))[rightPadding] * style->effectiveZoom();
/external/webkit/Source/WebCore/inspector/front-end/
DDrawer.js117 var rightPadding = (oldRight - newRight);
118 …s.push({element: this._currentPanelCounters, start: {"padding-right": rightPadding}, end: {"paddin…
176 var rightPadding = (newRight - oldRight);
177 …t: this._currentPanelCounters, start: {"padding-right": 0}, end: {"padding-right": rightPadding}});
DElementsPanel.js806 var rightPadding = 20;
809 rightPadding += errorWarningElement.offsetWidth;
810 … return ((crumbs.totalOffsetLeft + crumbs.offsetWidth + rightPadding) < window.innerWidth);
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage_p.h136 …TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPad…
Dqwebpage.cpp1328 unsigned rightPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Right); in adjustPointForClicking() local
1335 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) in adjustPointForClicking()
1343 TouchAdjuster touchAdjuster(topPadding, rightPadding, bottomPadding, leftPadding); in adjustPointForClicking()
1565 QWebPagePrivate::TouchAdjuster::TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned … in TouchAdjuster() argument
1567 , m_rightPadding(rightPadding) in TouchAdjuster()
/external/webkit/Source/WebCore/platform/chromium/
DPopupMenuChromium.cpp975 … int rightPadding = max(0, m_popupClient->clientPaddingLeft() - m_popupClient->clientInsetLeft()); in paintRow() local
976 int remainingWidth = rowRect.width() - rightPadding; in paintRow()
983 imageRect.setX(rowRect.width() - rightPadding - imageRect.width()); in paintRow()
/external/webkit/Source/WebCore/dom/
DDocument.cpp1102 …nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned botto… in nodesFromRect() argument
1122 …ntentRect().intersects(HitTestResult::rectForPoint(point, topPadding, rightPadding, bottomPadding,… in nodesFromRect()
1129 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) { in nodesFromRect()
1134 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding); in nodesFromRect()
DDocument.h344 …efPtr<NodeList> nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding,
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0645236 …- RefPtf<NodeList> nodesFromRect(int x, int y, unsigned topPadding, unsigned rightPadding, unsigne…
45272 (WebCore::HitTestResult::rightPadding): getter for the right padding.