/external/webkit/Source/WebCore/rendering/ |
D | HitTestResult.h | 53 …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
|
D | HitTestResult.cpp | 74 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()
|
D | RenderLineBoxList.cpp | 290 int logicalPointStart = isHorizontal ? y - result.topPadding() : x - result.leftPadding(); in hitTest()
|
D | RenderImage.cpp | 413 …HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottom… in nodeAtPoint()
|
D | RenderThemeSafari.cpp | 64 topPadding, enumerator 911 return popupButtonPadding(controlSizeForFont(style))[topPadding]; in popupInternalPaddingTop()
|
D | RenderLayer.cpp | 3160 …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()
|
D | RenderThemeMac.mm | 119 topPadding, 1206 return popupButtonPadding(controlSizeForFont(style))[topPadding] * style->effectiveZoom();
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | ImageCG.cpp | 208 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/ |
D | qwebpage_p.h | 136 …TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPad…
|
D | qwebpage.cpp | 1327 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/ |
D | Document.cpp | 1099 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()
|
D | Document.h | 344 …PassRefPtr<NodeList> nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPa…
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 45236 …- RefPtf<NodeList> nodesFromRect(int x, int y, unsigned topPadding, unsigned rightPadding, unsigne… 45271 (WebCore::HitTestResult::topPadding): getter for the top padding.
|