Searched defs:topPadding (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/rendering/
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 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 DRenderThemeSafari.cpp64 topPadding, enumerator in enum:WebCore::__anon14717
911 return popupButtonPadding(controlSizeForFont(style))[topPadding];
/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/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)
/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);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 2382 milliseconds