Home
last modified time | relevance | path

Searched refs:topPadding (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DHitTestLocation.cpp73 HitTestLocation::HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned righ… in HitTestLocation() argument
75 , m_boundingBox(rectForPoint(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding)) in HitTestLocation()
78 , m_isRectBased(topPadding || rightPadding || bottomPadding || leftPadding) in HitTestLocation()
169 IntRect HitTestLocation::rectForPoint(const LayoutPoint& point, unsigned topPadding, unsigned right… in rectForPoint() argument
172 actualPoint -= IntSize(leftPadding, topPadding); in rectForPoint()
174 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding); in rectForPoint()
DHitTestLocation.h52 …HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsign…
69 …static IntRect rectForPoint(const LayoutPoint&, unsigned topPadding, unsigned rightPadding, unsign…
70 int topPadding() const { return roundedPoint().y() - m_boundingBox.y(); } in topPadding() function
DHitTestResult.h55 …HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned…
DRenderLineBoxList.cpp253 …IntRect(point.x(), point.y() - locationInContainer.topPadding(), 1, locationInContainer.topPadding in hitTest()
DHitTestResult.cpp65 HitTestResult::HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPad… in HitTestResult() argument
66 : m_hitTestLocation(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding) in HitTestResult()
DRenderThemeChromiumMac.mm165 topPadding,
1344 return popupButtonPadding(controlSizeForFont(style))[topPadding] * style->effectiveZoom();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DHeapSnapshotDataGrids.js301 var topPadding = 0;
304 var newTop = topPadding + children[i].nodeHeight();
307 topPadding = newTop;
312 this._addVisibleNodes(i, scrollTop - topPadding, topPadding);
315 _addVisibleNodes: function(firstVisibleNodeIndex, firstNodeHiddenHeight, topPadding) argument
342 this._addPaddingRows(topPadding, bottomPadding);
359 var topPadding = 0;
364 var newTop = topPadding + children[i].nodeHeight();
365 topPadding = newTop;
370 this._addVisibleNodes(i, 0, topPadding);
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.h190 …PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadding, unsigned rightPad…
DInternals.cpp1427 …::nodesFromRect(Document* document, int centerX, int centerY, unsigned topPadding, unsigned rightP… in nodesFromRect() argument
1456 …->visibleContentRect().intersects(HitTestLocation::rectForPoint(point, topPadding, rightPadding, b… in nodesFromRect()
1463 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) { in nodesFromRect()
1469 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding); in nodesFromRect()
DInternals.idl148 …unsigned long topPadding, unsigned long rightPadding, unsigned long bottomPadding, unsigned long l…
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.h322 unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding,