Home | History | Annotate | Download | only in widget

Lines Matching refs:mBottomOffset

114     private int mBottomOffset;
219 mBottomOffset = (int) a.getDimension(R.styleable.SlidingDrawer_bottomOffset, 0.0f);
351 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset;
356 childLeft = mExpanded ? mTopOffset : width - childWidth + mBottomOffset;
466 (!mExpanded && top > mBottomOffset + mBottom - mTop -
469 (!mExpanded && left > mBottomOffset + mRight - mLeft -
565 mAnimationPosition = mBottomOffset +
591 handle.offsetTopAndBottom(mBottomOffset + mBottom - mTop -
599 } else if (deltaY > mBottomOffset + mBottom - mTop - mHandleHeight - top) {
600 deltaY = mBottomOffset + mBottom - mTop - mHandleHeight - top;
621 handle.offsetLeftAndRight(mBottomOffset + mRight - mLeft -
629 } else if (deltaX > mBottomOffset + mRight - mLeft - mHandleWidth - left) {
630 deltaX = mBottomOffset + mRight - mLeft - mHandleWidth - left;
700 if (mAnimationPosition >= mBottomOffset + (mVertical ? getHeight() : getWidth()) - 1) {