Lines Matching refs:childCount
788 final int childCount = getChildCount(); in onMeasure() local
789 for (int i = 0; i < childCount; i++) { in onMeasure()
846 final int childCount = getChildCount(); in onLayout() local
854 final int startIndex = mIsRtl ? childCount - 1 : 0; in onLayout()
855 final int endIndex = mIsRtl ? -1 : childCount; in onLayout()
864 if (mPageScrolls == null || childCount != mChildCountOnLastLayout) { in onLayout()
865 mPageScrolls = new int[childCount]; in onLayout()
936 if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < childCount) { in onLayout()
941 if (mScroller.isFinished() && mChildCountOnLastLayout != childCount) { in onLayout()
949 mChildCountOnLastLayout = childCount; in onLayout()
961 int childCount = getChildCount(); in updateMaxScrollX() local
962 if (childCount > 0) { in updateMaxScrollX()
963 final int index = mIsRtl ? 0 : childCount - 1; in updateMaxScrollX()
1968 final int childCount = getChildCount(); in getPageNearestToCenterOfScreen() local
1969 for (int i = 0; i < childCount; ++i) { in getPageNearestToCenterOfScreen()