/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | MffContext.java | 325 void addRunner(GraphRunner runner) { in addRunner() argument 327 mRunners.add(runner); in addRunner() 391 for (GraphRunner runner : mRunners) { in stopRunners() 393 runner.halt(); in stopRunners() 395 runner.stop(); in stopRunners() 401 runner.flushFrames(); in stopRunners() 410 runner.restart(); in resumeRunners() 423 for (GraphRunner runner : mRunners) { in waitUntilStopped() 424 runner.waitUntilStop(); in waitUntilStopped() 435 for (GraphRunner runner : mRunners) { in tearDown() [all …]
|
H A D | FilterGraph.java | 316 public void attachToRunner(GraphRunner runner) { in attachToRunner() argument 319 subGraph.attachToRunner(runner); in attachToRunner() 321 runner.attachGraph(this); in attachToRunner() 322 mRunner = runner; in attachToRunner() 323 } else if (mRunner != runner) { in attachToRunner() 468 GraphRunner runner = getRunner(); in run() local 469 runner.setIsVerbose(false); in run() 470 runner.start(this); in run() 471 return runner; in run() 484 GraphRunner runner = new GraphRunner(mContext); in getRunner() local [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/ |
H A D | ActivityLaunchAnimatorTest.kt | 34 import org.junit.runner.RunWith 162 val runner = activityLaunchAnimator.createRunner(controller) regex 163 runner.onAnimationCancelled() 171 assertNull(runner.delegate) 176 val runner = activityLaunchAnimator.createRunner(controller) regex 184 assertNull(runner.delegate) 189 val runner = activityLaunchAnimator.createRunner(controller) regex 205 val runner = activityLaunchAnimator.createRunner(controller) regex 206 assertNotNull(runner.delegate) 207 runner.dispose() [all …]
|
/aosp14/frameworks/base/services/tests/ |
H A D | runtests.py | 54 runner = os.environ.get('INSTRUMENTED_PACKAGE_RUNNER', None) 58 if runner is None: 59 runner = INSTRUMENTED_PACKAGE_RUNNER 77 (' '.join(sys.argv[1:]), runner)) 84 (package, runner))
|
/aosp14/frameworks/base/test-runner/ |
H A D | Android.bp | 17 // Build the android.test.runner library 37 name: "android.test.runner", 39 srcs: [":android-test-runner-sources"], 56 "junit.runner", 65 // Build the android.test.runner-minus-junit library 70 name: "android.test.runner-minus-junit", 85 name: "android-test-runner-current.txt", 95 name: "android-test-runner-sources",
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | RemoteAnimationAdapter.java | 74 public RemoteAnimationAdapter(IRemoteAnimationRunner runner, long duration, in RemoteAnimationAdapter() argument 76 mRunner = runner; in RemoteAnimationAdapter() 83 public RemoteAnimationAdapter(IRemoteAnimationRunner runner, long duration, in RemoteAnimationAdapter() argument 85 this(runner, duration, statusBarTransitionDelay, false /* changeNeedsSnapshot */); in RemoteAnimationAdapter() 89 public RemoteAnimationAdapter(IRemoteAnimationRunner runner, long duration, in RemoteAnimationAdapter() argument 91 this(runner, duration, statusBarTransitionDelay, false /* changeNeedsSnapshot */); in RemoteAnimationAdapter()
|
H A D | InsetsAnimationControlCallbacks.java | 39 void startAnimation(T runner, WindowInsetsAnimationControlListener listener, int types, in startAnimation() argument 47 void scheduleApplyChangeInsets(InsetsAnimationControlRunner runner); in scheduleApplyChangeInsets() argument 54 void notifyFinished(InsetsAnimationControlRunner runner, boolean shown); in notifyFinished() argument
|
H A D | InsetsController.java | 582 this.runner = runner; in RunningAnimation() 586 final InsetsAnimationControlRunner runner; field in InsetsController.RunningAnimation 755 mRunningAnimations.add(new RunningAnimation(runner, runner.getAnimationType())); 790 final InsetsAnimationControlRunner runner = runningAnimation.runner; in InsetsController() 1569 setRequestedVisibleTypes(shown ? runner.getTypes() : 0, runner.getTypes()); in notifyFinished() 1815 InsetsAnimationControlRunner runner = mRunningAnimations.get(i).runner; in dumpDebug() local 1816 runner.dumpDebug(proto, CONTROL); in dumpDebug() 1828 if (runner.isCancelled()) { in startAnimation() 1836 if (runningAnimation.runner == runner) { in startAnimation() 1843 runner.setReadyDispatched(true); in startAnimation() [all …]
|
H A D | InsetsAnimationThreadControlRunner.java | 59 void startAnimation(T runner, WindowInsetsAnimationControlListener listener, int types, 65 public void scheduleApplyChangeInsets(InsetsAnimationControlRunner runner) { 75 public void notifyFinished(InsetsAnimationControlRunner runner, boolean shown) { 77 "InsetsAsyncAnimation: " + WindowInsets.Type.toString(runner.getTypes()), 78 runner.getTypes());
|
/aosp14/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
H A D | AsyncRunner.java | 48 protected RunnerResult doInBackground(SyncRunner... runner) { in doInBackground() argument 51 if (runner.length > 1) { in doInBackground() 55 runner[0].assertReadyToStep(); in doInBackground() 62 runner[0].beginProcessing(); in doInBackground() 69 if (!runner[0].performStep()) { in doInBackground() 70 result.status = runner[0].determinePostRunState(); in doInBackground() 72 runner[0].waitUntilWake(); in doInBackground()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/ |
H A D | BackAnimationController.java | 329 IRemoteAnimationRunner runner) { in setBackToLauncherCallback() argument 361 @NonNull BackAnimationRunner runner) { in registerAnimation() argument 362 mAnimationDefinition.set(type, runner); in registerAnimation() 676 if (!shouldDispatchToAnimator() || runner == null) { in onGestureFinished() 680 if (runner.isWaitingAnimation()) { in onGestureFinished() 686 } else if (runner.isAnimationCancelled()) { in onGestureFinished() 782 if (runner == null) { in createAdapter() 794 mActiveCallback = runner.getCallback(); in createAdapter() 823 if (runner == null) { in createAdapter() 826 runner.cancelAnimation(); in createAdapter() [all …]
|
/aosp14/frameworks/base/cmds/uiautomator/library/ |
H A D | Android.bp | 31 "android.test.runner", 59 "android.test.runner", 74 "android.test.runner", 87 "android.test.runner",
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/ |
H A D | AAAPlusPlusVerifySysuiRequiredTestPropertiesTest.java | 28 import androidx.test.internal.runner.ClassPathScanner; 29 import androidx.test.internal.runner.ClassPathScanner.ChainedClassNameFilter; 30 import androidx.test.internal.runner.ClassPathScanner.ExternalClassNameFilter; 36 import org.junit.runner.RunWith; 167 if (loadedClass.isAnnotationPresent(org.junit.runner.RunWith.class)) { in isTestClass()
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/tests/ |
H A D | NoActivityJUnit4Test.java | 19 import androidx.test.runner.AndroidJUnit4; 21 import org.junit.runner.RunWith;
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/tare/ |
H A D | EconomicPolicyTest.java | 21 import androidx.test.runner.AndroidJUnit4; 24 import org.junit.runner.RunWith;
|
/aosp14/frameworks/base/test-runner/src/junit/textui/ |
H A D | TestRunner.java | 10 import junit.runner.BaseTestRunner; 11 import junit.runner.Version; 76 TestRunner runner= new TestRunner(); in run() local 77 return runner.doRun(test); in run()
|
/aosp14/frameworks/base/apct-tests/perftests/windowmanager/src/android/wm/ |
H A D | WindowManagerPerfTestBase.java | 33 import androidx.test.runner.lifecycle.ActivityLifecycleCallback; 34 import androidx.test.runner.lifecycle.ActivityLifecycleMonitorRegistry; 35 import androidx.test.runner.lifecycle.Stage; 37 import org.junit.runner.Description;
|
/aosp14/frameworks/base/core/tests/coretests/src/android/text/ |
H A D | EmojiConsistencyTest.java | 22 import androidx.test.runner.AndroidJUnit4; 25 import org.junit.runner.RunWith;
|
/aosp14/frameworks/base/startop/apps/ColorChanging/app/src/androidTest/java/com/android/startop/colorchanging/ |
H A D | ExampleInstrumentedTest.java | 6 import androidx.test.runner.AndroidJUnit4; 9 import org.junit.runner.RunWith;
|
/aosp14/frameworks/base/apct-tests/perftests/windowmanager/src/com/android/server/wm/test/filters/ |
H A D | FrameworksTestsFilter.java | 21 import org.junit.runner.Description; 22 import org.junit.runner.manipulation.Filter;
|
/aosp14/frameworks/base/services/tests/InputMethodSystemServerTests/ |
H A D | Android.bp | 36 "androidx.test.runner", 52 "android.test.runner", 83 "androidx.test.runner", 101 "android.test.runner",
|
/aosp14/frameworks/base/core/tests/coretests/src/android/hardware/input/ |
H A D | VirtualMouseRelativeEventTest.java | 21 import androidx.test.runner.AndroidJUnit4; 24 import org.junit.runner.RunWith;
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/ |
H A D | KeyguardTransitionRepositoryTest.kt | 47 import org.junit.runner.RunWith 57 private lateinit var runner: KeyguardTransitionRunner 64 runner = KeyguardTransitionRunner(underTest) 78 runner.startTransition( 93 runner.startTransition( 101 runner.startTransition(
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestAppTests2/src/com/android/multidexlegacytestapp/test2/ |
H A D | InstrumentationTest.java | 18 import androidx.test.runner.AndroidJUnit4; 26 import org.junit.runner.RunWith;
|
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/os/ |
H A D | PssPerfTest.java | 23 import androidx.test.runner.AndroidJUnit4; 27 import org.junit.runner.RunWith;
|