/third_party/e2fsprogs/misc/ |
D | Android.bp | 9 defaults: ["e2fsprogs-defaults"], 39 defaults: ["e2fsprogs-defaults"], 110 name: "tune2fs-defaults", 111 defaults: ["e2fsprogs-defaults"], 132 defaults: ["tune2fs-defaults"], 141 defaults: ["tune2fs-defaults"], 151 defaults: ["tune2fs-defaults"], 158 defaults: ["tune2fs-defaults"], 170 defaults: ["e2fsprogs-defaults"], 189 defaults: ["e2fsprogs-defaults"], [all …]
|
/third_party/typescript_eslint/packages/experimental-utils/tests/eslint-utils/ |
D | applyDefault.test.ts | 5 const defaults = [{ prop: 'setting' }]; constant 7 const result = ESLintUtils.applyDefault(defaults, user); 9 expect(result).toStrictEqual(defaults); 10 expect(result).not.toBe(defaults); 14 const defaults: Record<string, string>[] = [ constant 29 const result = ESLintUtils.applyDefault(defaults, user); 40 expect(result).not.toBe(defaults); 45 const defaults: undefined[] = []; constant 47 const result = ESLintUtils.applyDefault(defaults, user); 49 expect(result).not.toBe(defaults); [all …]
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | LimitsTests.cpp | 57 dawn_native::Limits defaults; in TEST() local 58 dawn_native::GetDefaultLimits(&defaults); in TEST() 62 dawn_native::Limits required = defaults; in TEST() 63 EXPECT_TRUE(ValidateLimits(defaults, required).IsSuccess()); in TEST() 68 dawn_native::Limits supported = defaults; in TEST() 69 dawn_native::Limits required = defaults; in TEST() 78 EXPECT_TRUE(ValidateLimits(defaults, required).IsSuccess()); in TEST() 84 required.maxTextureDimension3D = defaults.maxTextureDimension3D + 1; in TEST() 85 dawn_native::MaybeError err = ValidateLimits(defaults, required); in TEST() 93 required.maxComputeWorkgroupSizeX = defaults.maxComputeWorkgroupSizeX - 1; in TEST() [all …]
|
/third_party/e2fsprogs/e2fsck/ |
D | Android.bp | 7 name: "e2fsck-defaults", 8 defaults: ["e2fsprogs-defaults"], 56 defaults: ["e2fsck-defaults"], 65 defaults: ["e2fsck-defaults"], 75 defaults: ["e2fsck-defaults"],
|
/third_party/harfbuzz/src/ |
D | gen-use-table.py | 81 defaults = ('Other', 'Not_Applicable', 'Cn', 'jt_X', 'No_Block') variable 84 data[0][0x0640] = defaults[0] 85 data[0][0x1B61] = defaults[0] 86 data[0][0x1B63] = defaults[0] 87 data[0][0x1B64] = defaults[0] 88 data[0][0x1B65] = defaults[0] 89 data[0][0x1B66] = defaults[0] 90 data[0][0x1B67] = defaults[0] 91 data[0][0x1B69] = defaults[0] 92 data[0][0x1B6A] = defaults[0] [all …]
|
/third_party/pulseaudio/src/tests/ |
D | ladspa-dbus.py | 51 defaults = [] 62 defaults.append(True) 65 defaults.append(False) 74 return sinkname, arguments, defaults 76 def print_arguments(arguments, defaults): argument 79 if defaults[i]: 84 sinkname, arguments, defaults = parse_arguments(sys.argv) variable 103 …"org.PulseAudio.Ext.Ladspa1", "AlgorithmParameters", (dbus.Array(arguments), dbus.Array(defaults)))
|
/third_party/openssl/util/perl/OpenSSL/Util/ |
D | Pod.pm | 94 my %defaults = ( debug => 0, section => 0, %$defaults_ref ); 102 print STDERR "DEBUG: Reading $input\n" if $defaults{debug}; 106 my %podinfo = ( section => $defaults{section}); 119 if $defaults{debug}; 121 if $defaults{debug}; 129 if $defaults{debug}; 137 print STDERR "DEBUG: Done reading $filename\n" if $defaults{debug};
|
/third_party/node/lib/internal/crypto/ |
D | scrypt.js | 17 const defaults = { variable 24 function scrypt(password, salt, keylen, options, callback = defaults) { 25 if (callback === defaults) { 27 options = defaults; 50 function scryptSync(password, salt, keylen, options = defaults) { 79 let { N, r, p, maxmem } = defaults; 80 if (options && options !== defaults) { 113 if (N === 0) N = defaults.N; 114 if (r === 0) r = defaults.r; 115 if (p === 0) p = defaults.p; [all …]
|
/third_party/e2fsprogs/resize/ |
D | Android.bp | 12 name: "resize2fs-defaults", 13 defaults: ["e2fsprogs-defaults"], 27 defaults: ["resize2fs-defaults"], 47 defaults: ["resize2fs-defaults"],
|
/third_party/node/deps/npm/node_modules/request/ |
D | index.js | 104 request.defaults = function (options, requester) { function 114 var defaults = wrapRequestMethod(self, options, requester) 118 defaults[verb] = wrapRequestMethod(self[verb], options, requester, verb) 121 defaults.cookie = wrapRequestMethod(self.cookie, options, requester) 122 defaults.jar = self.jar 123 defaults.defaults = self.defaults 124 return defaults 137 return request.defaults(options)
|
/third_party/node/deps/npm/node_modules/qs/lib/ |
D | parse.js | 7 var defaults = { variable 33 key = options.decoder(part, defaults.decoder); 36 key = options.decoder(part.slice(0, pos), defaults.decoder); 37 val = options.decoder(part.slice(pos + 1), defaults.decoder); 146 …limiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter; 147 options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth; 148 …options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayL… 150 options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder; 151 …options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDot… 152 …Objects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects; [all …]
|
D | stringify.js | 20 var defaults = { variable 53 return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder) : prefix; 61 var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder); 62 return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder))]; 132 … var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter; 133 …options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandlin… 134 var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls; 135 var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode; 136 var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder; 139 …ate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate; [all …]
|
/third_party/node/deps/npm/node_modules/defaults/ |
D | README.md | 1 # defaults chapter 7 `npm install defaults` 13 var defaults = require('defaults'); 16 options = defaults(options, { 37 …ions` and `defaults`. When called, it overrides all of `undefined` properties in `options` with t…
|
D | test.js | 1 var defaults = require('./'), variable 5 var options = defaults(false, { a : true }); 11 var result = defaults({}, { a: false, b: true }); 18 var result = defaults({ b: false }, { a: false, b: true }); 26 var result = defaults({}, d);
|
/third_party/e2fsprogs/debugfs/ |
D | Android.bp | 7 name: "debugfs-defaults", 8 defaults: ["e2fsprogs-defaults"], 60 defaults: ["debugfs-defaults"], 70 defaults: ["debugfs-defaults"],
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/base/ |
D | flags_test.dart | 43 expect(flags['flag-defaults-to-false'], isFalse); 44 expect(flags['flag-defaults-to-true'], isTrue); 45 expect(flags['option-defaults-to-foo'], 'foo'); 59 '--flag-defaults-to-false', 61 '--option-defaults-to-foo=qux', 64 expect(flags['flag-defaults-to-false'], isTrue); 66 expect(flags['option-defaults-to-foo'], 'qux'); 74 argParser.addFlag('flag-defaults-to-false', defaultsTo: false); 75 argParser.addFlag('flag-defaults-to-true', defaultsTo: true); 77 argParser.addOption('option-defaults-to-foo', defaultsTo: 'foo');
|
/third_party/e2fsprogs/lib/support/ |
D | Android.bp | 9 defaults: ["e2fsprogs-defaults"], 43 defaults: ["e2fsprogs-defaults"], 59 defaults: ["e2fsprogs-defaults"],
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | configure.js | 101 var defaults = config.target_defaults 110 if (!defaults) { 111 defaults = config.target_defaults = {} 118 defaults.cflags = [] 119 defaults.defines = [] 120 defaults.include_dirs = [] 121 defaults.libraries = [] 125 defaults.default_configuration = gyp.opts.debug ? 'Debug' : 'Release' 128 if (!defaults.default_configuration) { 129 defaults.default_configuration = 'Release' [all …]
|
/third_party/node/deps/npm/node_modules/rc/ |
D | index.js | 10 module.exports = function (name, defaults, argv, parse) { argument 15 defaults = ( 16 'string' === typeof defaults 17 ? cc.json(defaults) : defaults 24 var configs = [defaults]
|
/third_party/node/deps/npm/node_modules/gauge/ |
D | theme-set.js | 49 if (!this.defaults[platform]) this.defaults[platform] = {true: {}, false: {}} 50 this.defaults[platform][hasUnicode][hasColor] = name 56 var platform = this.defaults[platformName] || this.defaults.fallback 72 } else if (platform === this.defaults.fallback) { 112 defaults: JSON.parse(JSON.stringify(this.defaults || {})) property
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_runner/ |
D | build_script_generator.dart | 146 if (!identical(definition.defaults?.generateFor, InputSet.anything)) { 148 if (definition.defaults.generateFor.include != null) { 149 inputSetArgs['include'] = literalConstList(definition.defaults.generateFor.include); 151 if (definition.defaults.generateFor.exclude != null) { 152 inputSetArgs['exclude'] = literalConstList(definition.defaults.generateFor.exclude); 158 if (!identical(definition.defaults?.options, BuilderOptions.empty)) { 159 namedArgs['defaultOptions'] = _constructBuilderOptions(definition.defaults.options); 161 if (!identical(definition.defaults?.devOptions, BuilderOptions.empty)) { 162 namedArgs['defaultDevOptions'] = _constructBuilderOptions(definition.defaults.devOptions); 164 if (!identical(definition.defaults?.releaseOptions, BuilderOptions.empty)) { [all …]
|
/third_party/node/deps/npm/node_modules/qs/dist/ |
D | qs.js | 41 var defaults = { 67 key = options.decoder(part, defaults.decoder); 70 key = options.decoder(part.slice(0, pos), defaults.decoder); 71 val = options.decoder(part.slice(pos + 1), defaults.decoder); 180 …limiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter; 181 options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth; 182 …options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayL… 184 options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder; 185 …options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDot… 186 …Objects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects; [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | typeFromPropertyAssignment17.types | 9 mini.M.defaults() 10 >mini.M.defaults() : any 11 >mini.M.defaults : (def: any) => any 15 >defaults : (def: any) => any 76 M.defaults = function (def) { 77 >M.defaults = function (def) { return def} : (def: any) => any 78 >M.defaults : (def: any) => any 80 >defaults : (def: any) => any
|
D | typeFromPropertyAssignment17.symbols | 8 mini.M.defaults() 9 >mini.M.defaults : Symbol(M.defaults, Decl(minimatch.js, 8, 1)) 13 >defaults : Symbol(M.defaults, Decl(minimatch.js, 8, 1)) 67 M.defaults = function (def) { 68 >M.defaults : Symbol(M.defaults, Decl(minimatch.js, 8, 1)) 70 >defaults : Symbol(M.defaults, Decl(minimatch.js, 8, 1))
|
/third_party/cef/tools/ |
D | gn_args.py | 164 defaults = { 173 defaults['use_sysroot'] = True 176 defaults['is_win_fastlink'] = False 177 defaults['visual_studio_path'] = '' 178 defaults['visual_studio_version'] = '' 179 defaults['visual_studio_runtime_dirs'] = '' 180 defaults['windows_sdk_path'] = '' 182 return defaults 189 defaults = GetChromiumDefaultArgs() 190 assert key in defaults, "No default Chromium value specified for %s" % key [all …]
|