Searched refs:mLayoutCountDownLatch (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DTestContentView.java34 private CountDownLatch mLayoutCountDownLatch; field in class:TestContentView
57 mLayoutCountDownLatch = new CountDownLatch(count);
62 assertThat(mLayoutCountDownLatch.await(seconds, TimeUnit.SECONDS), equalTo(true));
68 if (mLayoutCountDownLatch != null) {
69 mLayoutCountDownLatch.countDown();
/frameworks/support/gridlayout/src/androidTest/java/androidx/gridlayout/widget/
H A DTestContentView.java34 private CountDownLatch mLayoutCountDownLatch; field in class:TestContentView
57 mLayoutCountDownLatch = new CountDownLatch(count);
62 assertThat(mLayoutCountDownLatch.await(seconds, TimeUnit.SECONDS), equalTo(true));
68 if (mLayoutCountDownLatch != null) {
69 mLayoutCountDownLatch.countDown();
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTestContentView.java34 private CountDownLatch mLayoutCountDownLatch; field in class:TestContentView
57 mLayoutCountDownLatch = new CountDownLatch(count);
62 assertThat(mLayoutCountDownLatch.await(seconds, TimeUnit.SECONDS), equalTo(true));
73 if (mLayoutCountDownLatch != null) {
74 mLayoutCountDownLatch.countDown();
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
H A DDrawerInteractionTest.java153 CountDownLatch mLayoutCountDownLatch; field in class:DrawerInteractionTest.TestDrawerLayout
160 mLayoutCountDownLatch = new CountDownLatch(count);
164 boolean result = mLayoutCountDownLatch.await(seconds, TimeUnit.SECONDS);
165 mLayoutCountDownLatch = null;
172 if (mLayoutCountDownLatch != null) {
173 mLayoutCountDownLatch.countDown();

Completed in 56 milliseconds