Home | History | Annotate | Download | only in launcher3

Lines Matching refs:mCurrentPage

98     protected int mCurrentPage;
217 mCurrentPage = 0;
326 return mCurrentPage;
333 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
356 if (0 <= mCurrentPage && mCurrentPage < getPageCount()) {
357 newX = getScrollForPage(mCurrentPage);
402 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
407 mCurrentPage = validateNewPage(currentPage);
545 if (mCurrentPage != getNextPage()) {
580 mCurrentPage = validateNewPage(mNextPage);
864 if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < childCount) {
1019 if (page != mCurrentPage || !mScroller.isFinished()) {
1032 focusablePage = mCurrentPage;
1075 if (mCurrentPage >= 0 && mCurrentPage < getPageCount()) {
1076 getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode);
1079 if (mCurrentPage > 0) {
1080 getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMode);
1083 if (mCurrentPage < getPageCount() - 1) {
1084 getPageAt(mCurrentPage + 1).addFocusables(views, direction, focusableMode);
1098 View current = getPageAt(mCurrentPage);
1125 final View currentPage = getPageAt(mCurrentPage);
1299 final View currentPage = getPageAt(mCurrentPage);
1595 final int pageWidth = getPageAt(mCurrentPage).getMeasuredWidth();
1621 (isFling && !isVelocityXLeft)) && mCurrentPage > 0) {
1622 finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage - 1;
1626 mCurrentPage < getChildCount() - 1) {
1627 finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage + 1;
1652 int nextPage = Math.max(0, mCurrentPage - 1);
1653 if (nextPage != mCurrentPage) {
1662 int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1);
1663 if (nextPage != mCurrentPage) {