Home
last modified time | relevance | path

Searched refs:isStarted (Results 1 – 16 of 16) sorted by relevance

/cts/tests/tests/appop/AppThatCanBeForcedIntoForegroundStates/src/android/app/appops/cts/appthatcanbeforcedintoforegroundstates/
DAppOpsForegroundControlForegroundService.kt33 private var isStarted = false variable
37 while (!isStarted) { in waitUntilStarted()
47 isStarted = false in stop()
64 isStarted = true in onStartCommand()
74 isStarted = false in onUnbind()
DAppOpsForegroundControlLocationForegroundService.kt34 private var isStarted = false variable
38 while (!isStarted) { in waitUntilStarted()
48 isStarted = false in stop()
66 isStarted = true in onStartCommand()
76 isStarted = false in onUnbind()
/cts/tests/tests/appop/AppForDiscreteTest/src/android/app/appops/cts/appfordiscretetest/
DAppOpsForegroundControlLocationForegroundService.kt34 private var isStarted = false variable
38 while (!isStarted) { in waitUntilStarted()
48 isStarted = false in stop()
66 isStarted = true in onStartCommand()
76 isStarted = false in onUnbind()
/cts/tests/app/app/src/android/app/stubs/
DChildActivity.java22 public static boolean isStarted = false; field in ChildActivity
27 isStarted = true; in onStart()
/cts/tests/tests/content/src/android/content/cts/
DChildActivity.java22 public static boolean isStarted = false; field in ChildActivity
27 isStarted = true; in onStart()
/cts/tests/app/src/android/app/cts/
DAliasActivityTest.java43 assertFalse(ChildActivity.isStarted); in testAliasActivity()
48 assertTrue(ChildActivity.isStarted); in testAliasActivity()
/cts/tests/tests/animation/src/android/animation/cts/
DAnimatorTest.java86 assertTrue(mAnimator.isStarted()); in testStart()
108 assertFalse(mAnimator.isStarted()); in testIsStarted()
113 assertTrue(mAnimator.isStarted()); in testIsStarted()
DAnimatorSetTest.java450 assertFalse(a1.isStarted()); in testReverseWithStartDelay()
461 assertTrue(a2.isStarted()); in testReverseWithStartDelay()
554 assertTrue(a2.isStarted()); in testDurationScale()
687 assertTrue(set1.isStarted()); in testClone()
691 assertFalse(set2.isStarted()); in testClone()
870 assertTrue(animation.isStarted()); in testNotifiesAfterEnd()
877 assertFalse(animation.isStarted()); in testNotifiesAfterEnd()
888 assertFalse(animator.isStarted()); in testNotifiesAfterEnd()
DValueAnimatorTest.java112 assertFalse(mValueAnimator.isStarted()); in testIsStarted()
117 assertTrue(mValueAnimator.isStarted()); in testIsStarted()
321 assertTrue(anim.isStarted()); in testReverseRightAfterStart()
323 assertFalse(anim.isStarted()); in testReverseRightAfterStart()
664 assertTrue(animation.isStarted()); in testNotifiesAfterEnd()
671 assertFalse(animation.isStarted()); in testNotifiesAfterEnd()
DObjectAnimatorTest.java790 assertTrue(objAnimator.isStarted()); in testIsStarted()
/cts/tests/controls/src/android/controls/cts/
DCtsControlsService.java117 public Control buildMower(boolean isStarted) { in buildMower() argument
118 String desc = isStarted ? "Started" : "Stopped"; in buildMower()
119 ControlButton button = new ControlButton(isStarted, desc); in buildMower()
/cts/tests/tests/view/src/android/view/animation/cts/
DAnimatorInflaterTest.java292 assertTrue(anim1.isStarted()); in testReloadedAnimatorIsNotModified()
293 assertFalse(anim2.isStarted()); in testReloadedAnimatorIsNotModified()
/cts/tests/tests/print/src/android/print/cts/
DPrintJobStateTransitionsTest.java223 eventually(() -> assertTrue(job.isStarted()));
DInterfaceForAppsTest.java225 assertTrue(job.isStarted());
DPrintJobTest.java200 eventually(() -> assertTrue(job.isStarted()));
/cts/tests/tests/speech/src/android/speech/tts/cts/
DTextToSpeechWrapper.java241 public void onStop(String utteranceId, boolean isStarted) { in onStop() argument