Home | History | Annotate | Download | only in widget

Lines Matching refs:scrollx

3857             int scrollX = mScrollX;
3870 scrollX += mPaddingLeft;
3877 scrollX += (mRight - mLeft - mPaddingRight - drawables.mDrawableSizeRight);
3884 scrollX += compoundPaddingLeft + (hspace - drawables.mDrawableWidthTop) / 2;
3891 scrollX += compoundPaddingLeft + (hspace - drawables.mDrawableWidthBottom) / 2;
3896 invalidate(dirty.left + scrollX, dirty.top + scrollY,
3897 dirty.right + scrollX, dirty.bottom + scrollY);
3912 final int scrollX = mScrollX;
3933 canvas.translate(scrollX + mPaddingLeft,
3944 canvas.translate(scrollX + right - left - mPaddingRight - dr.mDrawableSizeRight,
3954 canvas.translate(scrollX + compoundPaddingLeft + (hspace - dr.mDrawableWidthTop) / 2,
3964 canvas.translate(scrollX + compoundPaddingLeft +
4008 float clipLeft = compoundPaddingLeft + scrollX;
4010 float clipRight = right - left - compoundPaddingRight + scrollX;
5541 int scrollx, scrolly;
5553 scrollx = (right + left) / 2 - hspace / 2;
5556 scrollx = right - hspace;
5558 scrollx = left;
5568 scrollx = right - hspace;
5570 scrollx = (int) FloatMath.floor(mLayout.getLineLeft(line));
5578 scrollx = (int) FloatMath.floor(mLayout.getLineLeft(line));
5581 scrollx = right - hspace;
5595 if (scrollx != mScrollX || scrolly != mScrollY) {
5596 scrollTo(scrollx, scrolly);