/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/ |
D | CommandLineOptions.java | 41 private final boolean dryRun; field in CommandLineOptions 60 boolean dryRun, in CommandLineOptions() argument 77 this.dryRun = dryRun; in CommandLineOptions() 147 boolean dryRun() { in dryRun() method in CommandLineOptions 148 return dryRun; in dryRun() 192 private boolean dryRun = false; field in CommandLineOptions.Builder 256 Builder dryRun(boolean dryRun) { in dryRun() argument 257 this.dryRun = dryRun; in dryRun() 295 dryRun, in build()
|
D | Main.java | 173 } else if (parameters.dryRun()) { in formatFiles() 199 if (parameters.dryRun()) { in formatStdin() 251 if (parameters.dryRun() && parameters.inPlace()) { in processArgs()
|
D | CommandLineOptionsParser.java | 119 optionsBuilder.dryRun(true); in parse()
|
/external/kotlinx.atomicfu/gradle/ |
D | publish-npm-js.gradle | 22 def dryRun = prop("dryRun", "false") 42 if (dryRun == "true") {
|
/external/kotlinx.coroutines/gradle/ |
D | publish-npm-js.gradle | 21 def dryRun = prop("dryRun", "false") 49 if (dryRun == "true") {
|
/external/caliper/caliper/src/main/java/com/google/caliper/options/ |
D | ParsedOptions.java | 71 private boolean dryRun; field in ParsedOptions 73 @Override public boolean dryRun() { in dryRun() method in ParsedOptions 74 return dryRun; in dryRun() 79 if (dryRun) { in dryRunIncompatible() 354 .add("dryRun", this.dryRun()) in toString()
|
D | CaliperOptions.java | 36 boolean dryRun(); in dryRun() method
|
/external/google-java-format/core/src/test/java/com/google/googlejavaformat/java/ |
D | CommandLineOptionsParserTest.java | 54 assertThat(options.dryRun()).isFalse(); in defaults() 142 public void dryRun() { in dryRun() method in CommandLineOptionsParserTest 143 assertThat(CommandLineOptionsParser.parse(Arrays.asList("--dry-run")).dryRun()).isTrue(); in dryRun() 144 assertThat(CommandLineOptionsParser.parse(Arrays.asList("-n")).dryRun()).isTrue(); in dryRun()
|
/external/brotli/research/ |
D | sieve.cc | 18 static TextIdx dryRun(TextIdx sliceLen, Slot* map, TextIdx* shortcut, in dryRun() function 200 TextIdx size = dryRun( in sieve_generate() 209 size = dryRun(sliceLen, map.data(), shortcut.data(), end, end, b, ++piece); in sieve_generate() 219 size = dryRun( in sieve_generate() 240 size = dryRun( in sieve_generate()
|
/external/skqp/infra/cts/ |
D | run_testlab.go | 46 …dryRun = flag.Bool("dryrun", false, "Print out the command and quit without triggering… var 121 if err := runTests(apkPath, devices, ignoredDevices, client, *dryRun); err != nil { 125 if !*dryRun && (*uploadGCSPath != "") && (*properties != "") { 222 …k_path string, devices, ignoredDevices []*DeviceVersions, client *http.Client, dryRun bool) error { 245 if dryRun {
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | ExperimentingCaliperRun.java | 134 ImmutableSet<Experiment> experimentsToRun = dryRun(allExperiments); in run() 144 if (options.dryRun()) { in run() 261 ImmutableSet<Experiment> dryRun(Iterable<Experiment> experiments) in dryRun() method in ExperimentingCaliperRun 271 experiment.instrumentation().dryRun(benchmark); in dryRun()
|
D | AllocationInstrument.java | 97 public void dryRun(Object benchmark) throws UserCodeException { in dryRun() method in AllocationInstrument.MicroAllocationInstrumentation 138 public void dryRun(Object benchmark) throws InvalidBenchmarkException { in dryRun() method in AllocationInstrument.MacroAllocationInstrumentation
|
D | ArbitraryMeasurementInstrument.java | 91 public void dryRun(Object benchmark) throws InvalidBenchmarkException { in dryRun() method in ArbitraryMeasurementInstrument.ArbitraryMeasurementInstrumentation
|
D | RuntimeInstrument.java | 126 public void dryRun(Object benchmark) throws UserCodeException { in dryRun() method in RuntimeInstrument.MacrobenchmarkInstrumentation 179 @Override public void dryRun(Object benchmark) throws UserCodeException { in dryRun() method in RuntimeInstrument.RuntimeInstrumentation
|
D | Instrument.java | 118 public abstract void dryRun(Object benchmark) throws InvalidBenchmarkException; in dryRun() method in Instrument.Instrumentation
|
/external/caliper/caliper/src/test/java/com/google/caliper/options/ |
D | ParsedOptionsTest.java | 117 assertFalse(options.dryRun()); in checkDefaults() 151 assertFalse(options.dryRun()); in testKitchenSink()
|
/external/skqp/tools/flags/ |
D | SkCommonFlags.h | 16 DECLARE_bool(dryRun);
|
D | SkCommonFlags.cpp | 17 DEFINE_bool(dryRun, false,
|
/external/swiftshader/tests/regres/cmd/regres/ |
D | main.go | 88 dryRun = flag.Bool("dry", false, "don't post regres reports to gerrit") var 111 dryRun: *dryRun, 137 dryRun bool // don't post any reviews member 381 if r.dryRun { 754 if r.dryRun { 826 if !r.dryRun { 870 if r.dryRun {
|
/external/llvm-project/llvm/utils/Misc/ |
D | zkill | 257 if not opts.force and not opts.dryRun: 267 if not opts.dryRun:
|
/external/llvm/utils/Misc/ |
D | zkill | 257 if not opts.force and not opts.dryRun: 267 if not opts.dryRun:
|
/external/skia/tools/gpu/gl/interface/ |
D | gen_interface.go | 26 dryRun = flag.Bool("dryrun", false, "Print the outputs, don't write to file") var 267 if *dryRun {
|
/external/caliper/expectations/ |
D | knownfailures.txt | 69 …description: "Possible race in parse code that causes dryRun to be true when it is false, goes awa…
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | ExperimentingRunnerModuleTest.java | 136 public void dryRun(Object benchmark) throws InvalidBenchmarkException {} in createInstrumentation() method in ExperimentingRunnerModuleTest.FakeInstrument
|
/external/kotlinx.coroutines/integration-testing/ |
D | build.gradle | 48 def dryRunNpm = project.properties['dryRun']
|