• Home
  • Raw
  • Download

Lines Matching refs:isRtl

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