/third_party/libxml2/os400/libxmlrpg/ |
D | xmlwriter.rpgle | 34 d uri * value options(*string) const char * 74 d version * value options(*string) const char * 75 d encoding * value options(*string) const char * 76 d standalone * value options(*string) const char * 100 d format * value options(*string: *nopass) const char * 101 d #vararg1 * value options(*string: *nopass) void * 102 d #vararg2 * value options(*string: *nopass) void * 103 d #vararg3 * value options(*string: *nopass) void * 104 d #vararg4 * value options(*string: *nopass) void * 105 d #vararg5 * value options(*string: *nopass) void * [all …]
|
D | xmlstring.rpgle | 28 d cur * value options(*string) const xmlChar * 31 d cur * value options(*string) const xmlChar * 35 d cur * value options(*string) const char * 39 d cur * value options(*string) const char * 42 d str * value options(*string) const xmlChar * 47 d str * value options(*string) const xmlChar * 51 d str * value options(*string) const xmlChar * 52 d val * value options(*string) const xmlChar * 55 d str * value options(*string) const xmlChar * 56 d val * value options(*string) const xmlChar * [all …]
|
D | hash.rpgle | 91 d name * value options(*string) const xmlChar * 92 d userdata * value options(*string) void * 98 d name * value options(*string) const xmlChar * 99 d userdata * value options(*string) void * 106 d name * value options(*string) const xmlChar * 107 d name2 * value options(*string) const xmlChar * 108 d userdata * value options(*string) void * 114 d name * value options(*string) const xmlChar * 115 d name2 * value options(*string) const xmlChar * 116 d userdata * value options(*string) void * [all …]
|
D | SAX.rpgle | 54 d name * value options(*string) const xmlChar * 55 d ExternalID * value options(*string) const xmlChar * 56 d SystemID * value options(*string) const xmlChar * 60 d name * value options(*string) const xmlChar * 61 d ExternalID * value options(*string) const xmlChar * 62 d SystemID * value options(*string) const xmlChar * 67 d name * value options(*string) const xmlChar * 73 d name * value options(*string) const xmlChar * 78 d publicId * value options(*string) const xmlChar * 79 d systemId * value options(*string) const xmlChar * [all …]
|
D | transcode.rpgle | 19 d s * value options(*string) const xmlChar * 20 d encoding * value options(*string) const char * 21 d dict like(xmlDictPtr) options(*omit) 26 d s * value options(*string) const char * 27 d encoding * value options(*string) const char * 28 d dict like(xmlDictPtr) options(*omit) 32 d s * value options(*string) const char * 33 d encoding * value options(*string) const char * 34 d dict like(xmlDictPtr) options(*omit) 38 d s * value options(*string) const char * [all …]
|
/third_party/gn/src/gn/ |
D | visual_studio_utils_unittest.cc | 30 CompilerOptions options; in TEST() local 31 ParseCompilerOption("/FIinclude.h", &options); in TEST() 32 ParseCompilerOption("/FIC:/path/file.h", &options); in TEST() 33 ASSERT_EQ("include.h;C:/path/file.h;", options.forced_include_files); in TEST() 35 CHECK(options.buffer_security_check.empty()); in TEST() 36 ParseCompilerOption("/GS", &options); in TEST() 37 ASSERT_EQ("true", options.buffer_security_check); in TEST() 38 ParseCompilerOption("/GS-", &options); in TEST() 39 ASSERT_EQ("false", options.buffer_security_check); in TEST() 41 CHECK(options.runtime_library.empty()); in TEST() [all …]
|
/third_party/node/deps/npm/node_modules/rimraf/ |
D | rimraf.js | 25 function defaults (options) { argument 35 options[m] = options[m] || fs[m] 37 options[m] = options[m] || fs[m] 40 options.maxBusyTries = options.maxBusyTries || 3 41 options.emfileWait = options.emfileWait || 1000 42 if (options.glob === false) { 43 options.disableGlob = true 45 if (options.disableGlob !== true && glob === undefined) { 46 throw Error('glob dependency not found, set `options.disableGlob = true` if intentional') 48 options.disableGlob = options.disableGlob || false [all …]
|
/third_party/node/lib/ |
D | vm.js | 65 constructor(code, options = {}) { argument 67 if (typeof options === 'string') { 68 options = { filename: options }; variable 69 } else if (typeof options !== 'object' || options === null) { 70 throw new ERR_INVALID_ARG_TYPE('options', 'Object', options); 81 } = options; 83 validateString(filename, 'options.filename'); 84 validateInt32(lineOffset, 'options.lineOffset'); 85 validateInt32(columnOffset, 'options.columnOffset'); 88 'options.cachedData', [all …]
|
D | child_process.js | 97 * }} [options] 100 function fork(modulePath /* , args, options */) { 103 // Get options and args arguments. 105 let options = {}; 121 options = { ...arguments[pos++] }; 125 execArgv = options.execArgv || process.execArgv; 138 if (typeof options.stdio === 'string') { 139 options.stdio = stdioStringToArray(options.stdio, 'ipc'); 140 } else if (!ArrayIsArray(options.stdio)) { 143 options.stdio = stdioStringToArray( [all …]
|
D | https.js | 112 function createConnection(port, host, options) { argument 114 options = port; 116 options = { ...host }; 117 } else if (options === null || typeof options !== 'object') { 118 options = {}; 120 options = { ...options }; 124 options.port = port; 128 options.host = host; 131 debug('createConnection', options); 133 if (options._agentKey) { [all …]
|
D | _tls_wrap.js | 78 } = require('internal/options'); 87 const kConnectOptions = Symbol('connect-options'); 460 'options.enableTrace', 'boolean', enableTrace); 584 const options = this._tlsOptions; 586 handle = options.pipe ? 593 const context = options.secureContext || 594 options.credentials || 595 tls.createSecureContext(options); 600 const res = tls_wrap.wrap(handle, context.context, !!options.isServer); 652 const options = this._tlsOptions; [all …]
|
/third_party/node/deps/npm/node_modules/qs/lib/ |
D | parse.js | 19 var parseValues = function parseQueryStringValues(str, options) { argument 21 var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; 22 var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; 23 var parts = cleanStr.split(options.delimiter, limit); 33 key = options.decoder(part, defaults.decoder); 34 val = options.strictNullHandling ? null : ''; 36 key = options.decoder(part.slice(0, pos), defaults.decoder); 37 val = options.decoder(part.slice(pos + 1), defaults.decoder); 49 var parseObject = function (chain, val, options) { argument 60 obj = options.plainObjects ? Object.create(null) : {}; [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | destructuringAssignmentWithDefault.types | 21 function f1(options?: { color?: string, width?: number }) { 22 >f1 : (options?: { color?: string | undefined; width?: number | undefined; } | undefined) => void 23 >options : { color?: string | undefined; width?: number | undefined; } | undefined 27 let { color, width } = options || {}; 30 >options || {} : { color?: string | undefined; width?: number | undefined; } 31 >options : { color?: string | undefined; width?: number | undefined; } | undefined 34 ({ color, width } = options || {}); 35 >({ color, width } = options || {}) : { color?: string | undefined; width?: number | undefined; } 36 >{ color, width } = options || {} : { color?: string | undefined; width?: number | undefined; } 40 >options || {} : { color?: string | undefined; width?: number | undefined; } [all …]
|
D | destructuringAssignmentWithDefault.symbols | 15 function f1(options?: { color?: string, width?: number }) { 17 >options : Symbol(options, Decl(destructuringAssignmentWithDefault.ts, 6, 12)) 21 let { color, width } = options || {}; 24 >options : Symbol(options, Decl(destructuringAssignmentWithDefault.ts, 6, 12)) 26 ({ color, width } = options || {}); 29 >options : Symbol(options, Decl(destructuringAssignmentWithDefault.ts, 6, 12)) 31 let x1 = (options || {}).color; 33 >(options || {}).color : Symbol(color, Decl(destructuringAssignmentWithDefault.ts, 6, 23)) 34 >options : Symbol(options, Decl(destructuringAssignmentWithDefault.ts, 6, 12)) 37 let x2 = (options || {})["color"]; [all …]
|
D | destructuringAssignmentWithDefault.js | 8 function f1(options?: { color?: string, width?: number }) { argument 9 let { color, width } = options || {}; 10 ({ color, width } = options || {}); 11 let x1 = (options || {}).color; 12 let x2 = (options || {})["color"]; 15 function f2(options?: [string?, number?]) { 16 let [str, num] = options || []; 17 [str, num] = options || []; 18 let x1 = (options || {})[0]; 21 function f3(options?: { color: string, width: number }) { argument [all …]
|
/third_party/node/benchmark/ |
D | _http-benchmarkers.js | 22 create(options) { argument 24 '-d', options.duration, 25 '-c', options.connections, 29 for (const field in options.headers) { 30 args.push('-H', `${field}=${options.headers[field]}`); 32 const scheme = options.scheme || 'http'; 33 args.push(`${scheme}://127.0.0.1:${options.port}${options.path}`); 60 create(options) { argument 61 const duration = typeof options.duration === 'number' ? 62 Math.max(options.duration, 1) : [all …]
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_helpers.h | 60 inline std::string ProtobufNamespace(const Options& options) { in ProtobufNamespace() argument 64 inline std::string MacroPrefix(const Options& options) { in MacroPrefix() argument 65 return options.opensource_runtime ? "GOOGLE_PROTOBUF" : "GOOGLE_PROTOBUF"; in MacroPrefix() 68 inline std::string DeprecatedAttribute(const Options& options, in DeprecatedAttribute() argument 70 return d->options().deprecated() ? "PROTOBUF_DEPRECATED " : ""; in DeprecatedAttribute() 73 inline std::string DeprecatedAttribute(const Options& options, in DeprecatedAttribute() argument 75 return d->options().deprecated() ? "PROTOBUF_DEPRECATED_ENUM " : ""; in DeprecatedAttribute() 83 void SetCommonVars(const Options& options, 87 const Options& options, 90 bool GetBootstrapBasename(const Options& options, const std::string& basename, [all …]
|
/third_party/jerryscript/tools/ |
D | run-tests.py | 30 Options = collections.namedtuple('Options', ['name', 'build_args', 'test_args', 'skip']) variable 31 Options.__new__.__defaults__ = ([], [], False) 50 # Test options for unittests 52 Options('unittests-es2015_subset', 54 Options('unittests-es2015_subset-debug', 56 Options('doctests-es2015_subset', 58 Options('doctests-es2015_subset-debug', 60 Options('unittests-es5.1', 62 Options('unittests-es5.1-debug', 64 Options('doctests-es5.1', [all …]
|
/third_party/boost/libs/process/test/ |
D | Jamfile.jam | 57 rule test-options ( name ) 72 [ run environment.cpp system filesystem : [ test-options environment ] ] 73 [ run async_pipe.cpp system filesystem : [ test-options async_pipe ] ] 74 [ run pipe.cpp system filesystem : [ test-options pipe ] ] 82 …[ run async.cpp system thread filesystem : [ test-options async ] : sparring_part… 83 …[ run async_fut.cpp system thread filesystem : [ test-options async_fut ] : sparring_… 84 …[ run args_handling.cpp system thread filesystem : [ test-options args_handling ] : exit_… 85 …[ run args_cmd.cpp system filesystem : [ test-options args_cmd ] : sparring_p… 86 …[ run wargs_cmd.cpp system filesystem : [ test-options wargs_cmd ] : sparring_… 87 …[ run bind_stderr.cpp filesystem : [ test-options bind_stderr ] : sparrin… [all …]
|
/third_party/node/deps/npm/node_modules/require-directory/ |
D | index.js | 18 function checkFileInclusion(path, filename, options) { argument 21 (new RegExp('\\.(' + options.extensions.join('|') + ')$', 'i').test(filename)) && 23 // if options.include is a RegExp, evaluate it and make sure the path passes 24 !(options.include && options.include instanceof RegExp && !options.include.test(path)) && 26 // if options.include is a function, evaluate it and make sure the path passes 27 … !(options.include && typeof options.include === 'function' && !options.include(path, filename)) && 29 // if options.exclude is a RegExp, evaluate it and make sure the path doesn't pass 30 !(options.exclude && options.exclude instanceof RegExp && options.exclude.test(path)) && 32 // if options.exclude is a function, evaluate it and make sure the path doesn't pass 33 !(options.exclude && typeof options.exclude === 'function' && options.exclude(path, filename)) [all …]
|
/third_party/openssl/util/ |
D | process_docs.pl | 30 my %options = (); 31 GetOptions(\%options, 45 unless ($options{section}) { 46 $options{section} = [ 1, 3, 5, 7 ]; 48 unless ($options{sourcedir}) { 49 $options{sourcedir} = catdir($config{sourcedir}, "doc"); 51 pod2usage(1) unless ( defined $options{section} 52 && defined $options{sourcedir} 53 && defined $options{destdir} 54 && defined $options{type} [all …]
|
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/ |
D | comma-dangle.test.ts | 23 { code: 'enum Foo {Bar}', options: ['never'] }, 24 { code: 'enum Foo {Bar\n}', options: ['never'] }, 25 { code: 'enum Foo {Bar\n}', options: [{ enums: 'never' }] }, 26 { code: 'function Foo<T>() {}', options: ['never'] }, 27 { code: 'function Foo<T\n>() {}', options: ['never'] }, 28 { code: 'function Foo<T\n>() {}', options: [{ generics: 'never' }] }, 29 { code: 'type Foo = [string]', options: ['never'] }, 30 { code: 'type Foo = [string]', options: [{ tuples: 'never' }] }, 33 { code: 'enum Foo {Bar,}', options: ['always'] }, 34 { code: 'enum Foo {Bar,\n}', options: ['always'] }, [all …]
|
/third_party/node/deps/npm/node_modules/write-file-atomic/ |
D | index.js | 45 function writeFile (filename, data, options, callback) { argument 46 if (options) { 47 if (options instanceof Function) { 48 callback = options 49 options = {} 50 } else if (typeof options === 'string') { 51 options = { encoding: options } variable 54 options = {} 57 var Promise = options.Promise || global.Promise 81 if (options.mode && options.chown) resolve() [all …]
|
/third_party/boost/libs/hana/doc/js/ |
D | chart.js | 9 Hana.initChart = function(div, options) { argument 10 if (options.xAxis == undefined) { 11 options.xAxis = { 17 if (options.yAxis == undefined) { 18 options.yAxis = { 24 if (options.subtitle == undefined) { 25 options.subtitle = { text: "(smaller is better)" }; 28 if (options.chart == undefined) { 29 options.chart = { zoomType: 'xy' }; 32 options.plotOptions = options.plotOptions || {}; [all …]
|
/third_party/boost/libs/hana/doc/html/ |
D | chart.js | 9 Hana.initChart = function(div, options) { argument 10 if (options.xAxis == undefined) { 11 options.xAxis = { 17 if (options.yAxis == undefined) { 18 options.yAxis = { 24 if (options.subtitle == undefined) { 25 options.subtitle = { text: "(smaller is better)" }; 28 if (options.chart == undefined) { 29 options.chart = { zoomType: 'xy' }; 32 options.plotOptions = options.plotOptions || {}; [all …]
|