Home | History | Annotate | Download | only in widget

Lines Matching defs:hspace

5106                     final int hspace = mRight - mLeft - compoundPaddingRight - compoundPaddingLeft;
5108 scrollX += compoundPaddingLeft + (hspace - drawables.mDrawableWidthTop) / 2;
5114 final int hspace = mRight - mLeft - compoundPaddingRight - compoundPaddingLeft;
5116 scrollX += compoundPaddingLeft + (hspace - drawables.mDrawableWidthBottom) / 2;
5311 int hspace = right - left - compoundPaddingRight - compoundPaddingLeft;
5340 hspace - dr.mDrawableWidthTop) / 2, scrollY + mPaddingTop);
5350 (hspace - dr.mDrawableWidthBottom) / 2,
6902 int hspace = mRight - mLeft - getCompoundPaddingLeft() - getCompoundPaddingRight();
6926 if (right - left < hspace) {
6927 scrollx = (right + left) / 2 - hspace / 2;
6930 scrollx = right - hspace;
6937 scrollx = right - hspace;
7018 int hspace = mRight - mLeft - getCompoundPaddingLeft() - getCompoundPaddingRight();
7020 if (!mHorizontallyScrolling && right - left > hspace && right > x) {
7022 right = Math.max(x, left + hspace);
7030 if (hslack > hspace / 4)
7031 hslack = hspace / 4;
7049 if (x - hs > hspace - hslack) {
7050 hs = x - (hspace - hslack);
7057 if (right - hs < hspace)
7058 hs = right - hspace;
7060 if (right - hs < hspace)
7061 hs = right - hspace;
7065 if (right - left <= hspace) {
7069 hs = left - (hspace - (right - left)) / 2;
7075 hs = right - hspace;
7087 } else if (right < hs + hspace) {
7091 hs = right - hspace;
7099 if (x - hs > hspace - hslack) {
7100 hs = x - (hspace - hslack);
7190 final int hspace = mRight - mLeft - getCompoundPaddingLeft() - getCompoundPaddingRight();
7193 final int rightChar = mLayout.getOffsetForHorizontal(line, hspace+hs);