Lines Matching defs:count

404                 final int count = getChildCount();
405 for (int i = 0; i < count; i ++) {
462 public void offsetPositionsForRemovingInvisible(int start, int count) {
463 offsetPositionRecordsForRemove(start, count, true);
465 mState.mDeletedInvisibleItemCountSincePreviousLayout += count;
635 // count.
1052 int count = mChildHelper.getChildCount();
1053 for (int i = 0; i < count; i++) {
2037 int count = mChildHelper.getChildCount();
2038 for (int i = 0; i < count; ++i) {
2058 int count = mChildHelper.getChildCount();
2059 for (int i = 0; i < count; ++i) {
2102 int count = mChildHelper.getChildCount();
2103 for (int i = 0; i < count; ++i) {
2130 int count = mChildHelper.getChildCount();
2131 for (int i = 0; i < count; ++i) {
2176 count = mState.mPostLayoutHolderMap.size();
2177 for (int i = 0; i < count; ++i) {
2196 count = mState.mOldChangedHolders != null ? mState.mOldChangedHolders.size() : 0;
2198 for (int i = count - 1; i >= 0; i--) {
2234 final int count = mChildHelper.getChildCount();
2235 if (count == 0) {
2242 for (int i = 0; i < count; ++i) {
2260 int count = mChildHelper.getChildCount();
2261 if (count == 0) {
2264 for (int i = 0; i < count; ++i) {
2305 final int count = mDisappearingViewsInLayoutPass.size();
2306 for (int i = 0; i < count; i ++) {
2442 final int count = mItemDecorations.size();
2443 for (int i = 0; i < count; i++) {
2503 final int count = mItemDecorations.size();
2504 for (int i = 0; i < count; i++) {
2932 final int count = mChildHelper.getChildCount();
2933 for (int i = count - 1; i >= 0; i--) {
3067 int count = mChildHelper.getChildCount();
3068 for (int i = 0; i < count; i++) {
3356 int count = 0;
3360 count += viewHolders.size();
3363 return count;
3566 * RecyclerView provides artificial position range (item count) in pre-layout state and
3586 + "item count is " + mState.getItemCount());
3615 + "(" + position + "). Item count:" + mState.getItemCount());
3817 final int count = mCachedViews.size();
3818 for (int i = count - 1; i >= 0; i--) {
4061 final int count = mAttachedScrap.size();
4062 for (int i = count - 1; i >= 0; i--) {
4157 void offsetPositionRecordsForInsert(int insertedAt, int count) {
4164 holder + " now at position " + (holder.mPosition + count));
4166 holder.offsetPosition(count, true);
4173 * @param count Remove count
4177 void offsetPositionRecordsForRemove(int removedFrom, int count, boolean applyToPreLayout) {
4178 final int removedEnd = removedFrom + count;
4187 (holder.mPosition - count));
4189 holder.offsetPosition(-count, applyToPreLayout);
6348 * @param state Current State of RecyclerView where you can find total item count
6363 * @param state Current State of RecyclerView where you can find total item count
6393 * @param state Current State of RecyclerView where you can find total item count
6408 * @param state Current State of RecyclerView where you can find total item count
6579 * Default implementation adds item count and scroll information to the event.
8149 * For example, a newly added item is not included in pre-layout item count because
8153 * be available in second layout pass and will be included in the item count. Similar
8156 * You can get the adapter's item count via {@link LayoutManager#getItemCount()} method.
8714 final int count = mFinishedListeners.size();
8715 for (int i = 0; i < count; ++i) {