Searched refs:topPadding (Results 1 - 13 of 13) sorted by last modified time

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp1327 unsigned topPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Up); local
1335 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding)
1343 TouchAdjuster touchAdjuster(topPadding, rightPadding, bottomPadding, leftPadding);
1565 QWebPagePrivate::TouchAdjuster::TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
1566 : m_topPadding(topPadding)
H A Dqwebpage_p.h136 TouchAdjuster(unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp1099 PassRefPtr<NodeList> Document::nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const argument
1119 else if (!frameView->visibleContentRect().intersects(HitTestResult::rectForPoint(point, topPadding, rightPadding, bottomPadding, leftPadding)))
1126 if (!topPadding && !rightPadding && !bottomPadding && !leftPadding) {
1131 HitTestResult result(point, topPadding, rightPadding, bottomPadding, leftPadding);
H A DDocument.h337 * @param topPadding How much to expand the top of the rectangle
344 PassRefPtr<NodeList> nodesFromRect(int centerX, int centerY, unsigned topPadding, unsigned rightPadding,
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageCG.cpp208 float topPadding = srcRect.y() - floorf(srcRect.y()); local
210 subimageRect.move(-leftPadding, -topPadding);
211 adjustedDestRect.move(-leftPadding / xScale, -topPadding / yScale);
216 subimageRect.setHeight(ceilf(subimageRect.height() + topPadding));
/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.cpp74 HitTestResult::HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
77 , m_topPadding(topPadding)
83 m_isRectBased = topPadding || rightPadding || bottomPadding || leftPadding;
616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
619 actualPoint -= IntSize(leftPadding, topPadding);
621 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding);
H A DHitTestResult.h53 HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
108 static IntRect rectForPoint(const IntPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
109 int topPadding() const { return m_topPadding; } function in class:WebCore::HitTestResult
155 // y = p.y() - topPadding
157 // height = topPadding + bottomPadding + 1
H A DRenderImage.cpp413 HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottomPadding(), result.leftPadding());
H A DRenderLayer.cpp3160 HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottomPadding(), result.leftPadding());
3189 HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottomPadding(), result.leftPadding());
3246 HitTestResult tempResult(result.point(), result.topPadding(), result.rightPadding(), result.bottomPadding(), result.leftPadding());
H A DRenderLineBoxList.cpp290 int logicalPointStart = isHorizontal ? y - result.topPadding() : x - result.leftPadding();
H A DRenderThemeMac.mm119 topPadding,
1206 return popupButtonPadding(controlSizeForFont(style))[topPadding] * style->effectiveZoom();
H A DRenderThemeSafari.cpp64 topPadding, enumerator in enum:WebCore::__anon14717
911 return popupButtonPadding(controlSizeForFont(style))[topPadding];

Completed in 249 milliseconds