/third_party/typescript/tests/baselines/reference/tsbuild/sample1/initial-build/ |
D | does-not-write-any-files-in-a-dry-build.js | 69 /lib/tsc --b /src/tests --dry 70 [[90m12:00:00 AM[0m] A non-dry build would build project '/src/core/tsconfig.json' 72 [[90m12:00:00 AM[0m] A non-dry build would build project '/src/logic/tsconfig.json' 74 [[90m12:00:00 AM[0m] A non-dry build would build project '/src/tests/tsconfig.json'
|
/third_party/ffmpeg/libavfilter/ |
D | af_compensationdelay.c | 33 double dry, wet; member 49 … { "dry", "set dry amount", OFFSET(dry), AV_OPT_TYPE_DOUBLE, {.dbl=0}, 0, 1, A }, 128 const double dry = s->dry; in filter_frame() local 153 dst[n] = dry * sample + wet * buffer[r_ptr]; in filter_frame()
|
D | af_biquads.c | 219 double dry = 1. - wet; \ 228 out = o2 * wet + i2 * dry; \ 243 out = o1 * wet + i1 * dry; \ 262 out = o0 * wet + i1 * dry; \ 300 double dry = 1. - wet; \ 312 out = out * wet + in * dry; \ 348 double dry = 1. - wet; \ 359 out = out * wet + in * dry; \ 395 double dry = 1. - wet; \ 414 out = out * wet + in * dry; \
|
D | af_asubboost.c | 127 const double dry = ctx->is_disabled ? 1. : s->dry_gain; in filter_channels() local 153 dst[n] = (src[n] * dry + buffer[write_pos] * mix) * wet; in filter_channels()
|
/third_party/gstreamer/gstplugins_good/gst/audiofx/ |
D | audioinvert.c | 205 gfloat dry = 1.0 - filter->degree; in gst_audio_invert_transform_int() local 209 val = (*data) * dry + (-1 - (*data)) * filter->degree; in gst_audio_invert_transform_int() 219 gfloat dry = 1.0 - filter->degree; in gst_audio_invert_transform_float() local 223 val = (*data) * dry - (*data) * filter->degree; in gst_audio_invert_transform_float()
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
D | format_test.dart | 41 testUsingContext('dry-run', () async { 52 await runner.run(<String>['format', '--dry-run', srcFile.path]); 58 testUsingContext('dry-run with set-exit-if-changed', () async { 71 'format', '--dry-run', '--set-exit-if-changed', srcFile.path,
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-prune.md | 13 npm prune [[<@scope>/]<pkg>...] [--production] [--dry-run] [--json] 30 If the `--dry-run` flag is used then no changes will actually be made. 33 have made with `--dry-run`) are printed as a JSON object.
|
D | npm-pack.md | 14 npm pack [[<@scope>/]<pkg>...] [--dry-run] 30 The `--dry-run` argument will do everything that pack usually does without
|
D | npm-publish.md | 13 …blish [<tarball>|<folder>] [--tag <tag>] [--access <public|restricted>] [--otp otpcode] [--dry-run] 54 * `[--dry-run]` 69 Similar to `--dry-run` see [`npm pack`](/cli-commands/npm-pack), which figures out the files to be
|
D | npm-audit.md | 15 npm audit fix [--force|--package-lock-only|--dry-run] 45 Do a dry run to get an idea of what `audit fix` will do, and _also_ output 48 $ npm audit fix --dry-run --json
|
D | npm-install-test.md | 24 common options: [--save|--save-dev|--save-optional] [--save-exact] [--dry-run]
|
/third_party/jerryscript/tools/ |
D | gen-doctest.py | 32 def __init__(self, outdir, dry): argument 39 self._dry = dry 174 extractor = DoctestExtractor(args.dir, args.dry)
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
D | format.dart | 14 argParser.addFlag('dry-run', 71 if (argResults['dry-run']) '-n', 74 if (!argResults['dry-run'] && !argResults['machine']) '-w',
|
/third_party/gstreamer/gstplugins_bad/gst/freeverb/ |
D | gstfreeverb.c | 331 gfloat wet, wet1, wet2, dry; member 566 priv->dry = (1.0 - filter->level) * scaledry; in gst_freeverb_set_property() 726 out_l2 = out_l1 * priv->wet1 + out_r1 * priv->wet2 + input_2 * priv->dry; in gst_freeverb_transform_m2s_int() 727 out_r2 = out_r1 * priv->wet1 + out_l1 * priv->wet2 + input_2 * priv->dry; in gst_freeverb_transform_m2s_int() 773 out_l2 = out_l1 * priv->wet1 + out_r1 * priv->wet2 + input_2l * priv->dry; in gst_freeverb_transform_s2s_int() 774 out_r2 = out_r1 * priv->wet1 + out_l1 * priv->wet2 + input_2r * priv->dry; in gst_freeverb_transform_s2s_int() 822 out_l2 = out_l1 * priv->wet1 + out_r1 * priv->wet2 + input_2 * priv->dry; in gst_freeverb_transform_m2s_float() 823 out_r2 = out_r1 * priv->wet1 + out_l1 * priv->wet2 + input_2 * priv->dry; in gst_freeverb_transform_m2s_float() 867 out_l2 = out_l1 * priv->wet1 + out_r1 * priv->wet2 + input_2l * priv->dry; in gst_freeverb_transform_s2s_float() 868 out_r2 = out_r1 * priv->wet1 + out_l1 * priv->wet2 + input_2r * priv->dry; in gst_freeverb_transform_s2s_float()
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/roll-release/ |
D | main.go | 86 dry := false 87 flag.BoolVar(&dry, "dry", false, "perform a dry run") 176 if dry {
|
/third_party/typescript/tests/baselines/reference/ |
D | renameImportSpecifierPropertyName.baseline | 5 /*====== /tests/cases/fourslash/dry.ts ======*/
|
/third_party/python/Tools/msi/ |
D | uploadrelease.bat | 24 if "%1" EQU "--dry-run" (set DRYRUN=true) && shift && goto CheckOpts 99 echo uploadrelease.bat --host HOST --user USERNAME [--target TARGET] [--dry-run] [-h] 104 echo --dry-run Display commands and filenames without executing them
|
/third_party/typescript/tests/baselines/reference/tsbuild/sample1/incremental-declaration-doesnt-change/ |
D | indicates-that-it-would-skip-builds-during-a-dry-build.js | 5 /lib/tsc --b /src/tests --dry
|
/third_party/flutter/engine/flutter/ci/ |
D | format.sh | 78 ./ci/check_gn_format.py --dry-run true --root-directory . --gn-binary "third_party/gn/gn"
|
/third_party/libabigail/bash-completion/ |
D | fedabipkgdiff | 9 OPTS=" --dry-run
|
/third_party/pulseaudio/src/modules/gsettings/ |
D | meson.build | 24 args: ['--strict', '--dry-run', meson.current_source_dir()]
|
/third_party/flutter/skia/site/dev/sheriffing/ |
D | android.md | 32 You can send the autoroller into dry run mode via the UI. The uploaded change will not autosubmit w…
|
/third_party/skia/site/docs/dev/gardening/ |
D | android.md | 46 You can send the autoroller into dry run mode via the UI. The uploaded change 47 will not autosubmit when it is in dry run mode.
|
/third_party/typescript/src/testRunner/unittests/tsbuild/ |
D | graphOrdering.ts | 50 …const builder = createSolutionBuilder(host!, rootNames.map(getProjectFileName), { dry: true, force…
|
/third_party/rust/crates/tracing/bin/ |
D | publish | 139 -d|--dry-run)
|