Home | History | Annotate | Download | only in widget

Lines Matching refs:vspace

5090                     final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop;
5093 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightLeft) / 2;
5098 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop;
5101 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightRight) / 2;
5310 int vspace = bottom - top - compoundPaddingBottom - compoundPaddingTop;
5319 (vspace - dr.mDrawableHeightLeft) / 2);
5330 scrollY + compoundPaddingTop + (vspace - dr.mDrawableHeightRight) / 2);
5384 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop;
5385 final int maxScrollY = mLayout.getHeight() - vspace;
6903 int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom();
6942 if (ht < vspace) {
6946 scrolly = ht - vspace;
7019 int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom();
7028 if (vslack > vspace / 4)
7029 vslack = vspace / 4;
7038 if (bottom - vs > vspace - vslack)
7039 vs = bottom - (vspace - vslack);
7040 if (ht - vs < vspace)
7041 vs = ht - vspace;
7176 final int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom();
7178 if (vslack > vspace / 4)
7179 vslack = vspace / 4;
7184 } else if (bottom > (vspace+vs-vslack)) {
7185 line = mLayout.getLineForVertical(vspace+vs-vslack-(bottom-top));