/third_party/alsa-lib/src/conf/ |
D | alsa.conf | 95 # defaults 99 defaults.namehint.showall off 101 defaults.namehint.basic on 103 defaults.namehint.extended off 105 defaults.ctl.card 0 106 defaults.pcm.card 0 107 defaults.pcm.device 0 108 defaults.pcm.subdevice -1 109 defaults.pcm.nonblock 1 110 defaults.pcm.compat 0 [all …]
|
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
D | FlatbuffersMoreDefaults.swift | 27 let defaults = MoreDefaults.getRootAsMoreDefaults(bb: fbb.sizedBuffer) in testFlatbuffersObject() variable 28 XCTAssertEqual(defaults.emptyString, "") in testFlatbuffersObject() 29 XCTAssertEqual(defaults.someString, "some") in testFlatbuffersObject() 30 XCTAssertEqual(defaults.ints, []) in testFlatbuffersObject() 31 XCTAssertEqual(defaults.floats, []) in testFlatbuffersObject() 32 XCTAssertEqual(defaults.bools, []) in testFlatbuffersObject() 33 XCTAssertEqual(defaults.intsCount, 0) in testFlatbuffersObject() 34 XCTAssertEqual(defaults.floatsCount, 0) in testFlatbuffersObject() 35 XCTAssertEqual(defaults.abcsCount, 0) in testFlatbuffersObject() 36 XCTAssertEqual(defaults.boolsCount, 0) in testFlatbuffersObject() [all …]
|
/third_party/e2fsprogs/misc/ |
D | Android.bp | 21 defaults: ["e2fsprogs-defaults"], 50 defaults: ["e2fsprogs-defaults"], 121 name: "tune2fs-defaults", 122 defaults: ["e2fsprogs-defaults"], 144 defaults: ["tune2fs-defaults"], 152 defaults: ["tune2fs-defaults"], 162 defaults: ["tune2fs-defaults"], 168 defaults: ["tune2fs-defaults"], 180 defaults: ["e2fsprogs-defaults"], 198 defaults: ["e2fsprogs-defaults"], [all …]
|
/third_party/node/deps/npm/node_modules/defaults/ |
D | package.json | 2 "_from": "defaults@^1.0.3", 3 "_id": "defaults@1.0.3", 6 "_location": "/defaults", 11 "raw": "defaults@^1.0.3", 12 "name": "defaults", 13 "escapedName": "defaults", 21 "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", 23 "_spec": "defaults@^1.0.3", 30 "url": "https://github.com/tmpvar/defaults/issues" 37 "description": "merge single level defaults over a config object", [all …]
|
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 }); 10 test("ensure defaults override keys", function(t) { 11 var result = defaults({}, { a: false, b: true }); 18 var result = defaults({ b: false }, { a: false, b: true }); 24 test("ensure defaults clone nested objects", function(t) { 26 var result = defaults({}, d);
|
/third_party/alsa-lib/src/conf/pcm/ |
D | dmix.conf | 11 name defaults.pcm.dmix.card 18 name defaults.pcm.dmix.device 29 name defaults.pcm.dmix.format 36 name defaults.pcm.dmix.rate 43 name defaults.pcm.dmix.channels 49 name defaults.pcm.ipc_key 53 name defaults.pcm.ipc_gid 57 name defaults.pcm.ipc_perm 61 name defaults.pcm.tstamp_type 78 "defaults.dmix." [all …]
|
D | dsnoop.conf | 11 name defaults.pcm.dsnoop.card 18 name defaults.pcm.dsnoop.device 29 name defaults.pcm.dmix.format 36 name defaults.pcm.dmix.rate 42 name defaults.pcm.ipc_key 46 name defaults.pcm.ipc_gid 50 name defaults.pcm.ipc_perm 54 name defaults.pcm.tstamp_type 114 name defaults.namehint.extended
|
/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/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCAsmInfo.h | 97 /// compute the size of an inline asm. Defaults to 4. 101 /// out in .debug_frame and .debug_line. Defaults to 1. 105 /// the current PC. Defaults to false. 109 /// other when on the same line. Defaults to ';' 112 /// This indicates the comment character used by the assembler. Defaults to 116 /// This is appended to emitted labels. Defaults to ":" 119 // Print the EH begin symbol with an assignment. Defaults to false. 127 /// file. Defaults to "L" 130 /// This prefix is used for labels for basic blocks. Defaults to the same as 137 /// a plain private symbol should be used. Defaults to "". [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 | 18 name: "e2fsck-defaults", 19 defaults: ["e2fsprogs-defaults"], 69 defaults: ["e2fsck-defaults"], 78 defaults: ["e2fsck-defaults"], 88 defaults: ["e2fsck-defaults"],
|
/third_party/pulseaudio/man/ |
D | pulse-daemon.conf.5.xml.in | 65 boolean value, defaults to <opt>no</opt>. The <opt>--daemonize</opt> 72 fail. Takes a boolean argument, defaults to <opt>yes</opt>. The <opt>--fail</opt> command line 84 a boolean argument, defaults to <opt>yes</opt>. The 91 request. Defaults to <opt>yes</opt>.</p> 120 available resamplers. Defaults to <opt>speex-float-1</opt>. The 138 name-based matching only. Defaults to <opt>yes</opt>. 148 channels. (This has no effect on LFE remixing.) Defaults to 167 Defaults to <opt>no</opt>.</p> 174 the sink has the LFE channel as well. Defaults to <opt>no</opt>.</p> 179 LFE filter. Set it to 0 to disable the LFE filter. Defaults to 0.</p> [all …]
|
/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/pulseaudio/src/tests/ |
D | ladspa-dbus.py | 51 defaults = [] 62 defaults.append(True) 65 defaults.append(False) 71 print(" defaults: " + str(defaults)) 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/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/resize/ |
D | Android.bp | 21 name: "resize2fs-defaults", 22 defaults: ["e2fsprogs-defaults"], 37 defaults: ["resize2fs-defaults"], 56 defaults: ["resize2fs-defaults"],
|
/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/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/e2fsprogs/debugfs/ |
D | Android.bp | 17 name: "debugfs-defaults", 18 defaults: ["e2fsprogs-defaults"], 70 defaults: ["debugfs-defaults"], 79 defaults: ["debugfs-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/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
|
/third_party/e2fsprogs/lib/support/ |
D | Android.bp | 20 defaults: ["e2fsprogs-defaults"], 54 defaults: ["e2fsprogs-defaults"], 70 defaults: ["e2fsprogs-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 …]
|