Searched refs:run (Results 26 - 50 of 3569) sorted by relevance

1234567891011>>

/external/autotest/client/common_lib/cros/
H A Dpath_utils.py20 run = utils.run
22 run = host.run
33 result = host.run('ls %s 2> /dev/null' % ' '.join(glob_list),
49 run = utils.run
51 run = host.run
52 if run('l
[all...]
/external/vogar/src/vogar/tasks/
H A DPrepareTarget.java26 private final Run run; field in class:PrepareTarget
29 public PrepareTarget(Run run, Target target) { argument
31 this.run = run;
36 // Even if runner dir is /vogar/run, the grandparent will be / (and non-null)
37 target.await(run.runnerDir.getParentFile().getParentFile());
38 if (run.cleanBefore) {
39 target.rm(run.runnerDir);
41 target.mkdirs(run.runnerDir);
42 target.mkdirs(run
[all...]
H A DRetrieveFilesTask.java26 private final Run run; field in class:RetrieveFilesTask
29 public RetrieveFilesTask(Run run, File deviceFile) { argument
31 this.run = run;
36 retrieveFiles(new File("./vogar-results"), deviceFile, run.retrievedFiles);
45 for (File file : run.target.ls(source)) {
47 run.log.info("Moving " + file + " to " + destination);
48 run.mkdir.mkdirs(destination);
49 run.target.pull(file, destination);
/external/vogar/src/vogar/
H A DJavaVm.java33 private final Run run; field in class:JavaVm
35 JavaVm(Run run) { argument
36 this.run = run;
45 Iterables.addAll(vmCommand, run.invokeWith());
46 vmCommand.add(run.javaPath(run.vmCommand));
47 if (run.profile) {
50 + "format=" + (run.profileBinary ? 'b' : 'a') + ","
51 + "file=" + run
[all...]
H A DDriver.java39 private final Run run; field in class:Driver
41 public Driver(Run run) { argument
42 this.run = run;
67 run.mkdir.mkdirs(run.localTemp);
73 run.console.info("Nothing to do.");
77 run.console.info("Actions: " + actions.size());
80 prepareTargetTask = new PrepareTarget(run, run
[all...]
/external/elfutils/tests/
H A DMakefile.am73 TESTS = run-arextract.sh run-arsymtest.sh newfile test-nlist \
75 run-show-die-info.sh run-get-files.sh run-get-lines.sh \
76 run-get-pubnames.sh run-get-aranges.sh run-allfcts.sh \
77 run-show-abbrev.sh run
[all...]
H A Drun-ranlib-test3.sh22 . $srcdir/run-ranlib-test2.sh
H A Drun-strip-test2.sh22 . $srcdir/run-strip-test.sh
H A Drun-strip-test3.sh22 . $srcdir/run-strip-test.sh
/external/libcxx/test/std/utilities/function.objects/func.require/
H A Dbullet_1_and_2.pass.cpp139 static void run() { TestCaseImp().doTest(); } function in struct:TestCaseImp
227 TestCase<R(), 0, Q_None>::run();
228 TestCase<R() const, 0, Q_Const>::run();
229 TestCase<R() volatile, 0, Q_Volatile>::run();
230 TestCase<R() const volatile, 0, Q_CV>::run();
231 TestCase<R(...), 0, Q_None>::run();
232 TestCase<R(...) const, 0, Q_Const>::run();
233 TestCase<R(...) volatile, 0, Q_Volatile>::run();
234 TestCase<R(...) const volatile, 0, Q_CV>::run();
235 TestCase<R(A&), 1, Q_None>::run();
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
H A Dstory_run_unittest.py36 run = story_run.StoryRun(self.stories[0])
37 run.AddValue(failure.FailureValue.FromMessage(self.stories[0], 'test'))
38 self.assertFalse(run.ok)
39 self.assertTrue(run.failed)
40 self.assertFalse(run.skipped)
42 run = story_run.StoryRun(self.stories[0])
43 run.AddValue(scalar.ScalarValue(
46 run.AddValue(failure.FailureValue.FromMessage(self.stories[0], 'test'))
47 self.assertFalse(run.ok)
48 self.assertTrue(run
[all...]
/external/droiddriver/src/io/appium/droiddriver/helpers/
H A DSingleRun.java22 * Base class for an action that should run only once no matter how many times the method {@link
30 * Calls {@link #run()} if it is the first time this method is called upon this instance.
36 run();
43 * Takes the action that should run only once.
45 protected abstract void run(); method in class:SingleRun
/external/v8/test/mjsunit/
H A Dfunction-named-self-reference.js35 function run(val) {
41 return run(0);
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dplaintext.conf3 ctrl_interface=/var/run/wpa_supplicant
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
H A DRunnableEx.java14 * Analog of {@link Runnable} where method <code>run</code> can throw {@link Exception}.
23 void run() throws Exception; method in interface:RunnableEx
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
H A DIPerfScenario.java25 public void run(IPerfOutput output) throws Exception; method in interface:IPerfScenario
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
H A DTestRunnable.java6 @Override public void run() { method in class:TestRunnable
/external/testng/src/main/java/org/testng/
H A DIConfigurable.java4 * If a test class implements this interface, its run() method
13 public void run(IConfigureCallBack callBack, ITestResult testResult); method in interface:IConfigurable
H A DIHookable.java4 * If a test class implements this interface, its run() method
13 * public void run(final IHookCallBack icb, ITestResult testResult) {
18 * public Object run() {
29 public void run(IHookCallBack callBack, ITestResult testResult); method in interface:IHookable
/external/vogar/src/vogar/android/
H A DDeviceRuntime.java41 private final Run run; field in class:DeviceRuntime
45 public DeviceRuntime(Run run, ModeId modeId, Variant variant, argument
52 this.run = run;
59 for (File classpathElement : run.classpath.getElements()) {
60 addCreateDexJarAndPushTasks(result, run.basenameOfJar(classpathElement),
73 return new RunActionTask(run, action, useLargeTimeout);
78 Iterables.addAll(vmCommand, run.invokeWith());
79 vmCommand.add(run.vmCommand);
82 VmCommandBuilder vmCommandBuilder = new VmCommandBuilder(run
[all...]
H A DInstallApkTask.java35 private final Run run; field in class:InstallApkTask
37 public InstallApkTask(Run run, Action action, File jar) { argument
41 this.run = run;
65 File dex = run.localFile(action, "classes.dex");
67 classesToDex.addAll(run.classpath);
68 if (run.useJack) {
73 run.androidSdk.dex(dex, classesToDex);
84 ((run.debugging) ? " android:debuggable=\"true\"" : "") + ">\n" +
93 File androidManifestFile = run
[all...]
/external/autotest/client/common_lib/cros/tendo/
H A Dwebservd_helper.py12 @param cmd: string command to run on |host|.
16 run = utils.run
18 run = host.run
19 result = run(command, ignore_status=True)
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiRun.java17 * at the same embedding level, each such sequence is called a "run".
19 * <p>A BidiRun represents such a run by storing its essential properties,
20 * but does not duplicate the characters which form the run.
22 * <p>The &quot;limit&quot; of the run is the position just after the
33 int start; /* first logical position of the run */
34 int limit; /* last visual position of the run +1 */
35 int insertRemove; /* if >0, flags for inserting LRM/RLM before/after run,
36 if <0, count of bidi controls within run */
42 * Note that members start and limit of a run instance have different
43 * meanings depending whether the run i
71 copyFrom(BidiRun run) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiRun.java16 * at the same embedding level, each such sequence is called a "run".
18 * <p>A BidiRun represents such a run by storing its essential properties,
19 * but does not duplicate the characters which form the run.
21 * <p>The &quot;limit&quot; of the run is the position just after the
32 int start; /* first logical position of the run */
33 int limit; /* last visual position of the run +1 */
34 int insertRemove; /* if >0, flags for inserting LRM/RLM before/after run,
35 if <0, count of bidi controls within run */
41 * Note that members start and limit of a run instance have different
42 * meanings depending whether the run i
70 copyFrom(BidiRun run) argument
[all...]
/external/google-benchmark/src/
H A Dcsv_reporter.cc68 void CSVReporter::PrintRunData(Run const& run) { argument
70 double cpu_time = run.cpu_accumulated_time * multiplier;
71 double real_time = run.real_accumulated_time * multiplier;
72 if (run.iterations != 0) {
73 real_time = real_time / static_cast<double>(run.iterations);
74 cpu_time = cpu_time / static_cast<double>(run.iterations);
79 std::string name = run.benchmark_name;
83 std::cout << run.iterations << ",";
87 if (run.bytes_per_second > 0.0) {
88 std::cout << run
[all...]

Completed in 1871 milliseconds

1234567891011>>