Searched refs:leftPadding (Results 1 - 14 of 14) 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.cpp1330 unsigned leftPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Left); 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
1569 , m_leftPadding(leftPadding)
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.h340 * @param leftPadding How much to expand the left of the rectangle
345 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping) const;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageCG.cpp207 float leftPadding = srcRect.x() - floorf(srcRect.x()); local
210 subimageRect.move(-leftPadding, -topPadding);
211 adjustedDestRect.move(-leftPadding / xScale, -topPadding / yScale);
213 subimageRect.setWidth(ceilf(subimageRect.width() + leftPadding));
/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.cpp74 HitTestResult::HitTestResult(const IntPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
80 , m_leftPadding(leftPadding)
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);
112 int leftPadding() const { return m_leftPadding; } function in class:WebCore::HitTestResult
156 // width = leftPadding + rightPadding + 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.mm122 leftPadding
1185 return popupButtonPadding(controlSizeForFont(style))[leftPadding] * style->effectiveZoom();
H A DRenderThemeSafari.cpp67 leftPadding enumerator in enum:WebCore::__anon14717
890 return popupButtonPadding(controlSizeForFont(style))[leftPadding];
/external/chromium/chrome/browser/resources/keyboard/
H A Dmain.js641 var leftPadding = Math.floor((newX - totalWidth) / 2);
642 document.getElementById('b').style.paddingLeft = leftPadding + 'px';

Completed in 197 milliseconds