Searched refs:bottomPadding (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestLocation.h44 HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
58 static IntRect rectForPoint(const LayoutPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
61 int bottomPadding() const { return m_boundingBox.maxY() - roundedPoint().y() - 1; } function in class:WebCore::HitTestLocation
H A DHitTestLocation.cpp63 HitTestLocation::HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
65 , m_boundingBox(rectForPoint(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding))
67 , m_isRectBased(topPadding || rightPadding || bottomPadding || leftPadding)
155 IntRect HitTestLocation::rectForPoint(const LayoutPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
160 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding);
H A DHitTestResult.h55 HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
H A DHitTestResult.cpp62 HitTestResult::HitTestResult(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
63 : m_hitTestLocation(centerPoint, topPadding, rightPadding, bottomPadding, leftPadding)
H A DRenderLineBoxList.cpp250 IntRect(point.x(), point.y() - locationInContainer.topPadding(), 1, locationInContainer.topPadding() + locationInContainer.bottomPadding() + 1) :
H A DRenderThemeChromiumMac.mm166 bottomPadding,
1244 return popupButtonPadding(controlSizeForFont(style))[bottomPadding] * style->effectiveZoom();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotDataGrids.js456 var bottomPadding = 0;
461 bottomPadding += this._nodeHeight(child);
465 this._bottomPaddingHeight += bottomPadding;
466 return position + bottomPadding;
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.h190 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState&) const;
H A DInternals.idl147 unsigned long topPadding, unsigned long rightPadding, unsigned long bottomPadding, unsigned long leftPadding,
H A DInternals.cpp1438 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState& exceptionState) const
1466 if (!request.ignoreClipping() && !frameView->visibleContentRect().intersects(HitTestLocation::rectForPoint(point, topPadding, rightPadding, bottomPadding, leftPadding)))
1473 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) {
1479 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding);
1437 nodesFromRect(Document* document, int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState& exceptionState) const argument

Completed in 259 milliseconds