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

/frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/test/
H A DFragmentTestActivity.java111 ((TransitionCalledListener)mListeners[i]).endLatch = new CountDownLatch(1);
162 return ((TransitionCalledListener)mListeners[transitionKey]).endLatch.getCount() == 0;
174 return l.endLatch.await(500,TimeUnit.MILLISECONDS);
189 public CountDownLatch endLatch = new CountDownLatch(1); field in class:FragmentTestActivity.TestFragment.TransitionCalledListener
201 endLatch.countDown();
/frameworks/base/core/tests/coretests/src/android/transition/
H A DFadeTransitionTest.java57 assertTrue(latch.endLatch.await(800, TimeUnit.MILLISECONDS));
69 assertTrue(latch.endLatch.await(800, TimeUnit.MILLISECONDS));
96 assertTrue(inLatch.endLatch.await(800, TimeUnit.MILLISECONDS));
129 assertTrue(outLatch.endLatch.await(800, TimeUnit.MILLISECONDS));
206 public CountDownLatch endLatch = new CountDownLatch(1); field in class:FadeTransitionTest.TransitionLatch
218 endLatch.countDown();
H A DSlideTransitionTest.java65 assertTrue(latch.endLatch.await(400, TimeUnit.MILLISECONDS));
82 assertTrue(latch.endLatch.await(400, TimeUnit.MILLISECONDS));
108 public CountDownLatch endLatch = new CountDownLatch(1); field in class:SlideTransitionTest.TransitionLatch
120 endLatch.countDown();
/frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
H A DFragmentAnimatorTest.java544 assertTrue(fragment.endLatch.await(200, TimeUnit.MILLISECONDS));
561 public CountDownLatch endLatch; field in class:FragmentAnimatorTest.AnimatorFragment
571 this.endLatch = new CountDownLatch(1);
580 endLatch.countDown();

Completed in 95 milliseconds