/external/valgrind/none/tests/ |
D | unit_debuglog.c | 19 void run(const char *format, ...) in run() function 55 run("|%f|", value); in main() 56 run("|%2f|", value); in main() 57 run("|%9f|", value); in main() 58 run("|%8.0f|", value); in main() 59 run("|%8.1f|", value); in main() 60 run("|%8.2f|", value); in main() 65 run("|%f|", value); in main() 66 run("|%4f|", value); in main() 67 run("|%9f|", value); in main() [all …]
|
/external/elfutils/tests/ |
D | Makefile.am | 73 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-line2addr.sh hash \ 78 newscn run-strip-test.sh run-strip-test2.sh \ 79 run-strip-test3.sh run-strip-test4.sh run-strip-test5.sh \ 80 run-strip-test6.sh run-strip-test7.sh run-strip-test8.sh \ 81 run-strip-test9.sh run-strip-test10.sh \ 82 run-strip-groups.sh run-strip-reloc.sh run-strip-strmerge.sh \ 83 run-unstrip-test.sh run-unstrip-test2.sh \ [all …]
|
D | ChangeLog | 28 run-readelf-zdebug.sh and run-readelf-zdebug-rel.sh. 32 * run-compress-test.sh: New test. 33 * Makefile.am (TESTS): Add run-compress-test.sh. 39 * run-zstrptr.sh: New test. 41 * run-elfputzdata.sh: Expect .shstrtab compression. 43 (TESTS): Add run-zstrptr.sh. 49 * run-readelf-zx.sh: New test. 50 * run-readelf-zp.sh: Likewise. 51 * Makefile.am (TESTS): Add run-readelf-zx.sh and run-readelf-zp.sh. 57 (TESTS): Add run-elfgetzdata.sh and run-elfputzdata.sh. [all …]
|
/external/vogar/src/vogar/ |
D | Driver.java | 39 private final Run run; field in Driver 41 public Driver(Run run) { in Driver() argument 42 this.run = run; in Driver() 67 run.mkdir.mkdirs(run.localTemp); in buildAndRun() 73 run.console.info("Nothing to do."); in buildAndRun() 77 run.console.info("Actions: " + actions.size()); in buildAndRun() 80 prepareTargetTask = new PrepareTarget(run, run.target); in buildAndRun() 81 run.taskQueue.enqueue(prepareTargetTask); in buildAndRun() 83 installVogarTasks = run.mode.installTasks(); in buildAndRun() 84 run.taskQueue.enqueueAll(installVogarTasks); in buildAndRun() [all …]
|
D | JavaVm.java | 33 private final Run run; field in JavaVm 35 JavaVm(Run run) { in JavaVm() argument 36 this.run = run; in JavaVm() 45 Iterables.addAll(vmCommand, run.invokeWith()); in newVmCommandBuilder() 46 vmCommand.add(run.javaPath(run.vmCommand)); in newVmCommandBuilder() 47 if (run.profile) { in newVmCommandBuilder() 50 + "format=" + (run.profileBinary ? 'b' : 'a') + "," in newVmCommandBuilder() 51 + "file=" + run.profileFile + "," in newVmCommandBuilder() 52 + "depth=" + run.profileDepth + "," in newVmCommandBuilder() 53 + "interval=" + run.profileInterval + "," in newVmCommandBuilder() [all …]
|
/external/libcxx/test/std/utilities/function.objects/func.require/ |
D | bullet_1_and_2.pass.cpp | 139 static void run() { TestCaseImp().doTest(); } in run() function 227 TestCase<R(), 0, Q_None>::run(); in main() 228 TestCase<R() const, 0, Q_Const>::run(); in main() 229 TestCase<R() volatile, 0, Q_Volatile>::run(); in main() 230 TestCase<R() const volatile, 0, Q_CV>::run(); in main() 231 TestCase<R(...), 0, Q_None>::run(); in main() 232 TestCase<R(...) const, 0, Q_Const>::run(); in main() 233 TestCase<R(...) volatile, 0, Q_Volatile>::run(); in main() 234 TestCase<R(...) const volatile, 0, Q_CV>::run(); in main() 235 TestCase<R(A&), 1, Q_None>::run(); in main() [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/ |
D | story_run_unittest.py | 36 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.failed) [all …]
|
/external/vogar/src/vogar/tasks/ |
D | RunActionTask.java | 47 protected final Run run; field in RunActionTask 55 public RunActionTask(Run run, Action action, boolean useLargeTimeout) { in RunActionTask() argument 57 this.run = run; in RunActionTask() 68 run.console.action(actionName); in execute() 84 ? run.largeTimeoutSeconds in execute() 85 : run.smallTimeoutSeconds; in execute() 90 HostMonitor hostMonitor = new HostMonitor(run.console, this); in execute() 92 ? hostMonitor.attach(monitorPort(run.firstMonitorPort)) in execute() 112 run.driver.addEarlyResult(new Outcome(earlyResultOutcome, Result.ERROR, in execute() 124 run.driver.addEarlyResult(new Outcome(actionName, Result.ERROR, e)); in execute() [all …]
|
D | BuildActionTask.java | 51 private final Run run; field in BuildActionTask 55 public BuildActionTask(Run run, Action action, Driver driver, File outputFile) { in BuildActionTask() argument 57 this.run = run; in BuildActionTask() 65 if (run.useJack) { in execute() 87 File classesDir = run.localFile(action, "classes"); in compile() 88 run.mkdir.mkdirs(classesDir); in compile() 93 Javac javac = new Javac(run.log, run.javaPath("javac")); in compile() 94 if (run.debugging) { in compile() 104 sourceDirs.addAll(run.sourcepath); in compile() 108 if (!run.buildClasspath.isEmpty()) { in compile() [all …]
|
D | PrepareTarget.java | 26 private final Run run; field in PrepareTarget 29 public PrepareTarget(Run run, Target target) { in PrepareTarget() argument 31 this.run = run; in PrepareTarget() 37 target.await(run.runnerDir.getParentFile().getParentFile()); in execute() 38 if (run.cleanBefore) { in execute() 39 target.rm(run.runnerDir); in execute() 41 target.mkdirs(run.runnerDir); in execute() 42 target.mkdirs(run.vogarTemp()); in execute() 43 target.mkdirs(run.dalvikCache()); in execute() 45 target.forwardTcp(run.firstMonitorPort + i); in execute() [all …]
|
/external/vogar/src/vogar/android/ |
D | DeviceRuntime.java | 41 private final Run run; field in DeviceRuntime 45 public DeviceRuntime(Run run, ModeId modeId, Variant variant, in DeviceRuntime() argument 52 this.run = run; in DeviceRuntime() 59 for (File classpathElement : run.classpath.getElements()) { in installTasks() 60 addCreateDexJarAndPushTasks(result, run.basenameOfJar(classpathElement), in installTasks() 73 return new RunActionTask(run, action, useLargeTimeout); in executeActionTask() 78 Iterables.addAll(vmCommand, run.invokeWith()); in newVmCommandBuilder() 79 vmCommand.add(run.vmCommand); in newVmCommandBuilder() 82 VmCommandBuilder vmCommandBuilder = new VmCommandBuilder(run.log) in newVmCommandBuilder() 83 .env("ANDROID_DATA", run.getAndroidDataPath()) in newVmCommandBuilder() [all …]
|
D | HostRuntime.java | 43 private final Run run; field in HostRuntime 47 public HostRuntime(Run run, ModeId modeId, Variant variant) { in HostRuntime() argument 52 this.run = run; in HostRuntime() 58 return new RunActionTask(run, action, useLargeTimeout); in executeActionTask() 62 return run.localFile("android-data", run.dalvikCache); in dalvikCache() 67 for (File classpathElement : run.classpath.getElements()) { in installTasks() 69 String name = run.basenameOfJar(classpathElement); in installTasks() 70 File localDex = run.localDexFile(name); in installTasks() 71 result.add(createCreateDexJarTask(run.classpath, classpathElement, name, in installTasks() 74 result.add(new MkdirTask(run.mkdir, dalvikCache())); in installTasks() [all …]
|
D | InstallApkTask.java | 35 private final Run run; field in InstallApkTask 37 public InstallApkTask(Run run, Action action, File jar) { in InstallApkTask() argument 41 this.run = run; in InstallApkTask() 65 File dex = run.localFile(action, "classes.dex"); in createDex() 67 classesToDex.addAll(run.classpath); in createDex() 68 if (run.useJack) { in createDex() 73 run.androidSdk.dex(dex, classesToDex); in createDex() 84 ((run.debugging) ? " android:debuggable=\"true\"" : "") + ">\n" + in createApk() 93 File androidManifestFile = run.localFile(action, "classes", "AndroidManifest.xml"); in createApk() 103 File apk = run.localFile(action, action + ".apk"); in createApk() [all …]
|
D | JackDexTask.java | 35 private final Run run; field in JackDexTask 42 public JackDexTask(Run run, Classpath classpath, boolean benchmark, String name, in JackDexTask() argument 45 this.run = run; in JackDexTask() 54 run.mkdir.mkdirs(localDex.getParentFile()); in execute() 72 Md5Cache jackCache = run.jackCache; in execute() 81 run.language.toString(), Boolean.toString(run.debugging)); in execute() 84 run.log.verbose("JackDexTask: Obtained " + localDex + " from jackCache"); in execute() 88 run.log.verbose("JackDexTask: Could not obtain " + localDex + " from jackCache"); in execute() 90 Jack jack = Jack.getJackCommand(run.log).outputDexZip(localDex.getPath()); in execute() 91 jack.sourceVersion(run.language.getJackSourceVersion()); in execute() [all …]
|
/external/icu/icu4c/source/layoutex/ |
D | ParagraphLayout.cpp | 57 le_int32 style, run, runStyle; in StyleRuns() local 73 run = 0; in StyleRuns() 83 fRunLimits[run] = 0x7FFFFFFF; in StyleRuns() 87 if (styleRunArrays[style]->getLimit(currentRun[style]) < fRunLimits[run]) { in StyleRuns() 88 fRunLimits[run] = styleRunArrays[style]->getLimit(currentRun[style]); in StyleRuns() 96 if (styleRunArrays[style]->getLimit(currentRun[style]) == fRunLimits[run]) { in StyleRuns() 101 run += 1; in StyleRuns() 104 fRunCount = run; in StyleRuns() 377 le_int32 run, runStart; in ParagraphLayout() local 386 for (run = 0; run < fStyleRunCount; run += 1) { in ParagraphLayout() [all …]
|
/external/skia/src/core/ |
D | SkTextBlob.cpp | 160 static const RunRecord* Next(const RunRecord* run) { in Next() argument 161 return reinterpret_cast<const RunRecord*>(reinterpret_cast<const uint8_t*>(run) in Next() 162 + StorageSize(run->glyphCount(), run->positioning())); in Next() 212 const RunRecord* run = RunRecord::First(this); in ~SkTextBlob() local 214 const RunRecord* nextRun = RunRecord::Next(run); in ~SkTextBlob() 215 SkDEBUGCODE(run->validate((uint8_t*)this + fStorageSize);) in ~SkTextBlob() 216 run->~RunRecord(); in ~SkTextBlob() 217 run = nextRun; in ~SkTextBlob() 374 SkRect SkTextBlobBuilder::TightRunBounds(const SkTextBlob::RunRecord& run) { in TightRunBounds() argument 377 run.font().applyToPaint(&paint); in TightRunBounds() [all …]
|
/external/llvm/unittests/IR/ |
D | LegacyPassManagerTest.cpp | 53 static char run; member 57 run++; in runOnModule() 65 char ModuleNDNM::run=0; member in llvm::__anon5fa8b9c00111::ModuleNDNM 69 static char run; member 73 run++; in runOnModule() 78 char ModuleNDM::run=0; member in llvm::__anon5fa8b9c00111::ModuleNDM 82 static char run; member 86 run++; in runOnModule() 91 char ModuleNDM2::run=0; member in llvm::__anon5fa8b9c00111::ModuleNDM2 95 static char run; member [all …]
|
/external/autotest/client/common_lib/cros/ |
D | avahi_utils.py | 41 run = utils.run if host is None else host.run 42 existing_config = run('cat %s 2> /dev/null' % src_file).stdout 54 tmp_conf_file = run('mktemp -t avahi-conf.XXXX').stdout.strip() 60 run('cat <<EOF >%s\n%s\nEOF\n' % (tmp_conf_file, '\n'.join(lines))) 94 run = utils.run if host is None else host.run 98 run('start avahi %s' % env, ignore_status=False) 115 run = utils.run if host is None else host.run 116 run('stop avahi', ignore_status=ignore_status) 126 run = utils.run if host is None else host.run 131 run('rm %s' % conf) [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
D | GlyphLayout.java | 137 GlyphRun run = glyphRunPool.obtain(); in setText() local 138 run.color.set(color); in setText() 139 run.x = x; in setText() 140 run.y = y; in setText() 141 fontData.getGlyphs(run, str, runStart, runEnd, colorRun); in setText() 142 if (run.glyphs.size == 0) in setText() 143 glyphRunPool.free(run); in setText() 145 runs.add(run); in setText() 148 float[] xAdvances = run.xAdvances.items; in setText() 149 for (int i = 0, n = run.xAdvances.size; i < n; i++) { in setText() [all …]
|
/external/boringssl/src/crypto/cipher/test/ |
D | make_all_legacy_aead_tests.sh | 5 go run make_legacy_aead_tests.go -cipher rc4 -mac md5 > rc4_md5_tls_tests.txt 6 go run make_legacy_aead_tests.go -cipher rc4 -mac sha1 > rc4_sha1_tls_tests.txt 8 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 > aes_128_cbc_sha1_tls_tests.txt 9 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 -implicit-iv > aes_128_cbc_sha1_tls_impli… 10 go run make_legacy_aead_tests.go -cipher aes128 -mac sha256 > aes_128_cbc_sha256_tls_tests.txt 12 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 > aes_256_cbc_sha1_tls_tests.txt 13 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 -implicit-iv > aes_256_cbc_sha1_tls_impli… 14 go run make_legacy_aead_tests.go -cipher aes256 -mac sha256 > aes_256_cbc_sha256_tls_tests.txt 15 go run make_legacy_aead_tests.go -cipher aes256 -mac sha384 > aes_256_cbc_sha384_tls_tests.txt 17 go run make_legacy_aead_tests.go -cipher 3des -mac sha1 > des_ede3_cbc_sha1_tls_tests.txt [all …]
|
/external/google-benchmark/src/ |
D | csv_reporter.cc | 68 void CSVReporter::PrintRunData(Run const& run) { in PrintRunData() argument 70 double cpu_time = run.cpu_accumulated_time * multiplier; in PrintRunData() 71 double real_time = run.real_accumulated_time * multiplier; in PrintRunData() 72 if (run.iterations != 0) { in PrintRunData() 73 real_time = real_time / static_cast<double>(run.iterations); in PrintRunData() 74 cpu_time = cpu_time / static_cast<double>(run.iterations); in PrintRunData() 79 std::string name = run.benchmark_name; in PrintRunData() 83 std::cout << run.iterations << ","; in PrintRunData() 87 if (run.bytes_per_second > 0.0) { in PrintRunData() 88 std::cout << run.bytes_per_second; in PrintRunData() [all …]
|
D | reporter.cc | 39 for (Run const& run : reports) { in ComputeStats() 40 CHECK_EQ(reports[0].benchmark_name, run.benchmark_name); in ComputeStats() 41 CHECK_EQ(run_iterations, run.iterations); in ComputeStats() 43 Stat1_d(run.real_accumulated_time/run.iterations, run.iterations); in ComputeStats() 45 Stat1_d(run.cpu_accumulated_time/run.iterations, run.iterations); in ComputeStats() 46 items_per_second_stat += Stat1_d(run.items_per_second, run.iterations); in ComputeStats() 47 bytes_per_second_stat += Stat1_d(run.bytes_per_second, run.iterations); in ComputeStats()
|
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
D | Trial.java | 40 private Run run; field in Trial 47 this.run = Run.DEFAULT; in Trial() 55 this.run = builder.run; in Trial() 65 public Run run() { in run() method in Trial 66 return run; in run() 87 && this.run.equals(that.run) in equals() 97 return Objects.hashCode(id, run, instrumentSpec, scenario, measurements); in hashCode() 103 .add("run", run) in toString() 112 private Run run; field in Trial.Builder 121 public Builder run(Run.Builder runBuilder) { in run() method in Trial.Builder [all …]
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/ |
D | MultiSynch.java | 35 public void run(Object[] params); in run() method 45 public static void run(Object[] params, Set synchSet, Action action) { in run() method in MultiSynch 46 run(params, synchSet.toArray(), action, 0); in run() 54 public static void run(Object[] params, List synchList, Action action) { in run() method in MultiSynch 55 run(params, synchList.toArray(), action, 0); in run() 63 public static void run(Object[] params, Object[] synchArr, Action action) { in run() method in MultiSynch 64 run(params, synchArr, action, 0); in run() 74 private static void run(Object[] params, Object[] synchArr, Action action, int depth) { in run() method in MultiSynch 78 run(params, synchArr, action, ++depth); in run() 80 action.run(params); in run() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | TestUScriptRun.java | 22 new TestUScriptRun().run(args); in main() 59 int run, runStart, runLimit; in CheckScriptRuns() local 63 run = 0; in CheckScriptRuns() 69 if (runStart != runStarts[run]) { in CheckScriptRuns() 70 …errln("Incorrect start offset for run " + run + ": expected " + runStarts[run] + ", got " + runSta… in CheckScriptRuns() 73 if (runLimit != runStarts[run + 1]) { in CheckScriptRuns() 74 …errln("Incorrect limit offset for run " + run + ": expected " + runStarts[run + 1] + ", got " + ru… in CheckScriptRuns() 77 if (runScript != testData[run].runScript) { in CheckScriptRuns() 78 …errln("Incorrect script for run " + run + ": expected \"" + UScript.getName(testData[run].runScrip… in CheckScriptRuns() 81 run += 1; in CheckScriptRuns() [all …]
|