Home
last modified time | relevance | path

Searched refs:layoutCount (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
DRecyclerViewAccessibilityLifecycleTest.java172 final int layoutCount = 5; in notClearCustomViewDelegate() local
178 layoutRange(recycler, layoutStart[0], layoutStart[0] + layoutCount); in notClearCustomViewDelegate()
214 assertEquals(layoutCount, recyclerView.getChildCount()); in notClearCustomViewDelegate()
240 assertEquals(layoutCount, recyclerView.getChildCount()); in notClearCustomViewDelegate()
268 final int[] layoutCount = new int[] {firstPassLayoutCount}; in clearItemDelegateWhenGoesToPool() local
274 layoutRange(recycler, 0, layoutCount[0]); in clearItemDelegateWhenGoesToPool()
314 layoutCount[0] = 0; in clearItemDelegateWhenGoesToPool()
DBaseGridLayoutManagerTest.java257 public void expectLayout(int layoutCount) { in expectLayout() argument
258 mLayoutLatch = new CountDownLatch(layoutCount); in expectLayout()
DRecyclerViewLayoutTest.java3564 final AtomicInteger layoutCount = new AtomicInteger(4); in invalidateAllDecorOffsets() local
3589 layoutRange(recycler, 0, layoutCount.get()); in invalidateAllDecorOffsets()
3648 layoutCount.set(3); in invalidateAllDecorOffsets()
3656 layoutCount.set(5); in invalidateAllDecorOffsets()
4057 final AtomicInteger layoutCount = new AtomicInteger(0); in updatesWhileDetached() local
4063 layoutCount.incrementAndGet(); in updatesWhileDetached()
4080 final AtomicInteger layoutCount = new AtomicInteger(0); in updatesAfterDetach() local
4086 layoutCount.incrementAndGet(); in updatesAfterDetach()
4097 final int prevLayoutCount = layoutCount.get(); in updatesAfterDetach()
4113 layoutCount.get()); in updatesAfterDetach()
DRecyclerViewAnimationsTest.java1109 int layoutCount = mLayoutManager.mTotalLayoutCount; in notifyDataSetChanged() local
1126 layoutCount + 1, mLayoutManager.mTotalLayoutCount); in notifyDataSetChanged()
/frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
DAdapterHelperTest.java869 final int layoutCount = Math.max(1, nextInt(random, count - start)); in randomTest() local
870 setupBasic(count, start, layoutCount); in randomTest()