Home | History | Annotate | Download | only in launcher2

Lines Matching refs:isRtl

411         final boolean isRtl = isLayoutRtl();
414 boolean isXBeforeFirstPage = isRtl ? (x > mMaxScrollX) : (x < 0);
415 boolean isXAfterLastPage = isRtl ? (x < 0) : (x > mMaxScrollX);
419 if (isRtl) {
428 if (isRtl) {
653 final boolean isRtl = isLayoutRtl();
655 final int startIndex = isRtl ? childCount - 1 : 0;
656 final int endIndex = isRtl ? -1 : childCount;
657 final int delta = isRtl ? -1 : 1;
736 final boolean isRtl = isLayoutRtl();
746 final int startIndex = isRtl ? getChildCount() - 1 : 0;
747 final int endIndex = isRtl ? index : index;
748 final int delta = isRtl ? -1 : 1;
784 final boolean isRtl = isLayoutRtl();
789 int leftScreen = isRtl ? pageCount - 1 : 0;
791 int endIndex = isRtl ? 0 : pageCount - 1;
792 int delta = isRtl ? -1 : 1;
1313 final boolean isRtl = isLayoutRtl();
1314 boolean isDeltaXLeft = isRtl ? deltaX > 0 : deltaX < 0;
1315 boolean isVelocityXLeft = isRtl ? velocityX > 0 : velocityX < 0;
1449 final boolean isRtl = isLayoutRtl();
1453 final int startIndex = isRtl ? childCount - 1 : 0;
1454 final int endIndex = isRtl ? -1 : childCount;
1455 final int delta = isRtl ? -1 : 1;
1892 final boolean isRtl = isLayoutRtl();
1901 float scrollPos = isRtl ? mMaxScrollX - getScrollX() : getScrollX();
1903 if (isRtl) {