Home | History | Annotate | Download | only in widget

Lines Matching defs:vspace

5369                     final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop;
5372 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightLeft) / 2;
5377 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop;
5380 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightRight) / 2;
5589 int vspace = bottom - top - compoundPaddingBottom - compoundPaddingTop;
5598 (vspace - dr.mDrawableHeightLeft) / 2);
5609 scrollY + compoundPaddingTop + (vspace - dr.mDrawableHeightRight) / 2);
5663 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop;
5664 final int maxScrollY = mLayout.getHeight() - vspace;
7204 int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom();
7243 if (ht < vspace) {
7247 scrolly = ht - vspace;
7320 int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom();
7329 if (vslack > vspace / 4)
7330 vslack = vspace / 4;
7339 if (bottom - vs > vspace - vslack)
7340 vs = bottom - (vspace - vslack);
7341 if (ht - vs < vspace)
7342 vs = ht - vspace;
7477 final int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom();
7479 if (vslack > vspace / 4)
7480 vslack = vspace / 4;
7485 } else if (bottom > (vspace+vs-vslack)) {
7486 line = mLayout.getLineForVertical(vspace+vs-vslack-(bottom-top));