Home
last modified time | relevance | path

Searched refs:topPadding (Results 1 – 13 of 13) 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 …
109 int topPadding() const { return m_topPadding; } in topPadding() function
DHitTestResult.cpp74 HitTestResult::HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPaddin… in HitTestResult() argument
77 , m_topPadding(topPadding) in HitTestResult()
83 m_isRectBased = topPadding || rightPadding || bottomPadding || leftPadding; in HitTestResult()
616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPaddi… in rectForPoint() argument
619 actualPoint -= IntSize(leftPadding, topPadding); in rectForPoint()
621 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding); in rectForPoint()
DRenderLineBoxList.cpp290 int logicalPointStart = isHorizontal ? y - result.topPadding() : x - result.leftPadding(); in hitTest()
DRenderImage.cpp413 …HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottom… in nodeAtPoint()
DRenderThemeSafari.cpp64 topPadding, enumerator
911 return popupButtonPadding(controlSizeForFont(style))[topPadding]; in popupInternalPaddingTop()
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.mm119 topPadding,
1206 return popupButtonPadding(controlSizeForFont(style))[topPadding] * style->effectiveZoom();
/external/webkit/Source/WebCore/platform/graphics/cg/
DImageCG.cpp208 float topPadding = srcRect.y() - floorf(srcRect.y()); in draw() local
210 subimageRect.move(-leftPadding, -topPadding); in draw()
211 adjustedDestRect.move(-leftPadding / xScale, -topPadding / yScale); in draw()
216 subimageRect.setHeight(ceilf(subimageRect.height() + topPadding)); in draw()
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage_p.h136 …TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPad…
Dqwebpage.cpp1327 unsigned topPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Up); 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
1566 : m_topPadding(topPadding) in TouchAdjuster()
/external/webkit/Source/WebCore/dom/
DDocument.cpp1099 PassRefPtr<NodeList> Document::nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigne… in nodesFromRect() argument
1119 …ew->visibleContentRect().intersects(HitTestResult::rectForPoint(point, topPadding, rightPadding, b… in nodesFromRect()
1126 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) { in nodesFromRect()
1131 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding); in nodesFromRect()
DDocument.h344 …PassRefPtr<NodeList> nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPa…
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0645236 …- RefPtf<NodeList> nodesFromRect(int x, int y, unsigned topPadding, unsigned rightPadding, unsigne…
45271 (WebCore::HitTestResult::topPadding): getter for the top padding.