Searched defs:runner (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/test-runner/src/junit/runner/
H A Dpackage-info.java4 package junit.runner
H A DStandardTestSuiteLoader.java1 package junit.runner;
H A DTestSuiteLoader.java1 package junit.runner;
H A DVersion.java1 package junit.runner;
H A DTestRunListener.java1 package junit.runner;
H A DBaseTestRunner.java1 package junit.runner;
175 * Sets the loading behaviour of the test runner
/frameworks/base/tools/bit/
H A Daapt.h28 string runner; member in struct:Apk
H A Dmain.cpp143 // The test runner class
144 string runner; member in struct:TestAction
747 // Inspect the apks, and figure out what is an activity and what needs a test runner
773 if (apk.runner.length() == 0) {
781 action.runner = apk.runner;
791 if (apk.runner.length() == 0) {
799 action.runner = apk.runner;
817 err = run_instrumentation_test(action.packageName, action.runner, actio
[all...]
/frameworks/multidex/instrumentation/src/com/android/test/runner/
H A DMultiDexTestRunner.java17 package com.android.test.runner;
27 * <a href="{@docRoot}reference/android/support/test/runner/AndroidJUnitRunner.html">
/frameworks/support/compat/tests/java/android/support/v4/widget/
H A DListViewCompatTest.java91 @NonNull final View view, @Nullable final Runnable runner, final boolean forceLayout)
111 if (runner != null) {
112 runner.run();
90 runOnMainAndLayoutSync(@onNull final ActivityTestRule activityTestRule, @NonNull final View view, @Nullable final Runnable runner, final boolean forceLayout) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java48 protected RunnerResult doInBackground(SyncRunner... runner) { argument
51 if (runner.length > 1) {
52 throw new RuntimeException("More than one runner received!");
55 runner[0].assertReadyToStep();
62 runner[0].beginProcessing();
69 if (!runner[0].performStep()) {
70 result.status = runner[0].determinePostRunState();
72 runner[0].waitUntilWake();
134 /** Create a new asynchronous graph runner with the given filter
146 /** Create a new asynchronous graph runner wit
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFilterGraph.java309 * this before any other runner is set. Note that calls to {@code getRunner()} and
312 * @param runner The GraphRunner instance that should execute this graph.
316 public void attachToRunner(GraphRunner runner) { argument
319 subGraph.attachToRunner(runner);
321 runner.attachGraph(this);
322 mRunner = runner;
323 } else if (mRunner != runner) {
461 * Creates a new runner for this graph in the specified mode and executes it. Returns the
462 * runner to allow control of execution.
468 GraphRunner runner
[all...]
H A DFrameManager.java264 GraphRunner runner = GraphRunner.current();
265 return runner != null ? runner.getFrameManager() : null;
312 * used in the runner that uses this FrameManager. As the new frame may share data with the
389 * @param runner the GraphRunner to bind the FrameManager to.
392 FrameManager(GraphRunner runner, int cacheType) { argument
393 mRunner = runner;
H A DMffContext.java325 void addRunner(GraphRunner runner) { argument
327 mRunners.add(runner);
391 for (GraphRunner runner : mRunners) {
393 runner.halt();
395 runner.stop();
400 for (GraphRunner runner : mRunners) {
401 runner.flushFrames();
409 for (GraphRunner runner : mRunners) {
410 runner.restart();
423 for (GraphRunner runner
[all...]
H A DGraphRunner.java544 * Callback method that is called when the runner completes a run. This method is called
547 public void onGraphRunnerStopped(GraphRunner runner); argument
550 * Callback method that is called when runner encounters an error.
564 public void onSubGraphRunEnded(GraphRunner runner); argument
574 /** The runner's thread priority. */
616 * instances to this runner before you can execute any of these graphs.
618 * @param context The MffContext instance for this runner.
627 * instances to this runner before you can execute any of these graphs.
629 * @param context The MffContext instance for this runner.
630 * @param config A Config instance with the configuration of this runner
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java535 * Use the low level net runner with no delayed response
536 * @param runner The LowLevelNetRunner object
538 public void setNetRunner(LowLevelNetRunner runner) { argument
539 setNetRunner(runner, false);
543 * Use the low level net runner and specify if the response
545 * @param runner The LowLevelNetRunner object
549 public void setNetRunner(LowLevelNetRunner runner, argument
551 netRunner = runner;
/frameworks/base/core/java/android/app/
H A DInstrumentation.java401 * @param runner The code to run on the main thread.
403 public void runOnMainSync(Runnable runner) { argument
405 SyncRunnable sr = new SyncRunnable(runner);

Completed in 8702 milliseconds