Searched defs:layoutLatch (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseLinearLayoutManagerTest.java357 CountDownLatch layoutLatch; field in class:BaseLinearLayoutManagerTest.WrappedLinearLayoutManager
383 layoutLatch = new CountDownLatch(count);
396 layoutLatch.await(seconds * (DEBUG ? 100 : 1), SECONDS);
399 layoutLatch.getCount(), CoreMatchers.is(0L));
635 layoutLatch.countDown();
H A DBaseStaggeredGridLayoutManagerTest.java471 CountDownLatch layoutLatch; field in class:BaseStaggeredGridLayoutManagerTest.WrappedLayoutManager
486 layoutLatch = new CountDownLatch(count);
490 layoutLatch.await(seconds * (DEBUG ? 100 : 1), SECONDS);
493 layoutLatch.getCount(), CoreMatchers.is(0L));
549 layoutLatch.await(timeout, TimeUnit.SECONDS);
550 assertFalse(msg, layoutLatch.getCount() == 0);
574 layoutLatch.countDown();
H A DBaseRecyclerViewInstrumentationTest.java199 if (lm.layoutLatch != null) {
200 while (lm.layoutLatch.getCount() > 0) {
201 lm.layoutLatch.countDown();
556 if (layoutLatch != null) {
557 layoutLatch.countDown();
564 protected CountDownLatch layoutLatch; field in class:BaseRecyclerViewInstrumentationTest.TestLayoutManager
568 layoutLatch = new CountDownLatch(count);
572 layoutLatch.await(seconds * (mDebug ? 1000 : 1), SECONDS);
575 layoutLatch.getCount(), CoreMatchers.is(0L));
598 layoutLatch
[all...]

Completed in 69 milliseconds