Home
last modified time | relevance | path

Searched refs:runner (Results 1 – 25 of 2580) sorted by relevance

12345678910>>...104

/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DMffContext.java325 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 DFilterGraph.java316 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 DActivityLaunchAnimatorTest.kt34 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 Druntests.py54 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 DAndroid.bp17 // 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 DRemoteAnimationAdapter.java74 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 DInsetsAnimationControlCallbacks.java39 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 DInsetsController.java582 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 DInsetsAnimationThreadControlRunner.java59 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 DAsyncRunner.java48 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 DBackAnimationController.java329 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 DAndroid.bp31 "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 DAAAPlusPlusVerifySysuiRequiredTestPropertiesTest.java28 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 DNoActivityJUnit4Test.java19 import androidx.test.runner.AndroidJUnit4;
21 import org.junit.runner.RunWith;
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/tare/
H A DEconomicPolicyTest.java21 import androidx.test.runner.AndroidJUnit4;
24 import org.junit.runner.RunWith;
/aosp14/frameworks/base/test-runner/src/junit/textui/
H A DTestRunner.java10 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 DWindowManagerPerfTestBase.java33 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 DEmojiConsistencyTest.java22 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 DExampleInstrumentedTest.java6 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 DFrameworksTestsFilter.java21 import org.junit.runner.Description;
22 import org.junit.runner.manipulation.Filter;
/aosp14/frameworks/base/services/tests/InputMethodSystemServerTests/
H A DAndroid.bp36 "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 DVirtualMouseRelativeEventTest.java21 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 DKeyguardTransitionRepositoryTest.kt47 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 DInstrumentationTest.java18 import androidx.test.runner.AndroidJUnit4;
26 import org.junit.runner.RunWith;
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/os/
H A DPssPerfTest.java23 import androidx.test.runner.AndroidJUnit4;
27 import org.junit.runner.RunWith;

12345678910>>...104