Home
last modified time | relevance | path

Searched full:options (Results 1 – 25 of 8886) sorted by relevance

12345678910>>...356

/third_party/gn/src/gn/
Dvisual_studio_utils_unittest.cc30 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/lib/
Dvm.js67 constructor(code, options = kEmptyObject) { argument
69 if (typeof options === 'string') {
70 options = { filename: options }; variable
72 validateObject(options, 'options');
83 } = options;
85 validateString(filename, 'options.filename');
86 validateInt32(lineOffset, 'options.lineOffset');
87 validateInt32(columnOffset, 'options.columnOffset');
89 validateBuffer(cachedData, 'options.cachedData');
91 validateBoolean(produceCachedData, 'options.produceCachedData');
[all …]
Dchild_process.js120 * }} [options]
123 function fork(modulePath, args = [], options) { argument
126 // Get options and args arguments.
132 options = args;
138 if (options != null) {
139 validateObject(options, 'options');
141 options = { __proto__: null, ...options, shell: false }; variable
142 options.execPath = options.execPath || process.execPath;
143 validateArgumentNullCheck(options.execPath, 'options.execPath');
146 execArgv = options.execArgv || process.execArgv;
[all …]
Dhttps.js126 function createConnection(port, host, options) { argument
128 options = port;
130 options = { ...host };
131 } else if (options === null || typeof options !== 'object') {
132 options = {};
134 options = { ...options };
138 options.port = port;
142 options.host = host;
145 debug('createConnection', options);
147 if (options._agentKey) {
[all …]
/third_party/node/deps/cares/src/lib/
Dares_options.c39 void ares_destroy_options(struct ares_options *options) in ares_destroy_options() argument
43 ares_free(options->servers); in ares_destroy_options()
45 for (i = 0; options->domains && i < options->ndomains; i++) { in ares_destroy_options()
46 ares_free(options->domains[i]); in ares_destroy_options()
49 ares_free(options->domains); in ares_destroy_options()
50 ares_free(options->sortlist); in ares_destroy_options()
51 ares_free(options->lookups); in ares_destroy_options()
52 ares_free(options->resolvconf_path); in ares_destroy_options()
53 ares_free(options->hosts_path); in ares_destroy_options()
84 /* Save options from initialized channel */
[all …]
/third_party/typescript/tests/baselines/reference/
DdestructuringAssignmentWithDefault.types21 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 …]
DdeclarationEmitOverloadedPrivateInference.types22 private proxy<T, U>(fn: (options: T) => U): (options: T) => U;
23 >proxy : { <T, U>(fn: (options: T) => U): (options: T) => U; <T, U>(fn: (options?: T) => U, noArgs:…
24 >fn : (options: T) => U
25 >options : T
26 >options : T
28 private proxy<T, U>(fn: (options?: T) => U, noArgs: true): (options?: T) => U;
29 >proxy : { <T, U>(fn: (options: T) => U): (options: T) => U; <T, U>(fn: (options?: T) => U, noArgs:…
30 >fn : (options?: T) => U
31 >options : T
34 >options : T
[all …]
DdestructuringAssignmentWithDefault.symbols15 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 …]
/third_party/node/lib/internal/streams/
Doperators.js44 function compose(stream, options) { argument
45 if (options != null) {
46 validateObject(options, 'options');
48 if (options?.signal != null) {
49 validateAbortSignal(options.signal, 'options.signal');
58 if (options?.signal) {
61 options.signal,
69 function map(fn, options) { argument
74 if (options != null) {
75 validateObject(options, 'options');
[all …]
/third_party/node/lib/internal/crypto/
Dkeygen.js66 const { getOptionValue } = require('internal/options');
80 function generateKeyPair(type, options, callback) { argument
81 if (typeof options === 'function') {
82 callback = options;
83 options = undefined;
87 const job = createJob(kCryptoJobAsync, type, options);
107 function generateKeyPairSync(type, options) { argument
108 return handleError(createJob(kCryptoJobSync, type, options).run());
128 function parseKeyEncoding(keyType, options = kEmptyObject) { argument
129 const { publicKeyEncoding, privateKeyEncoding } = options;
[all …]
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
Dprocessor.js8 function Processor(func, options) { argument
11 this.options = options;
14 _proto._shouldUpdateSelector = function _shouldUpdateSelector(rule, options) { argument
15 if (options === void 0) {
16 options = {};
18 var merged = Object.assign({}, this.options, options);
25 _proto._isLossy = function _isLossy(options) { argument
26 if (options === void 0) {
27 options = {};
29 var merged = Object.assign({}, this.options, options);
[all …]
/third_party/node/deps/openssl/config/archs/linux32-s390x/no-asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/linux64-s390x/no-asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/VC-WIN64A/no-asm/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/
Dprogs.h69 extern const OPTIONS asn1parse_options[];
70 extern const OPTIONS ca_options[];
71 extern const OPTIONS ciphers_options[];
72 extern const OPTIONS cmp_options[];
73 extern const OPTIONS cms_options[];
74 extern const OPTIONS crl_options[];
75 extern const OPTIONS crl2pkcs7_options[];
76 extern const OPTIONS dgst_options[];
77 extern const OPTIONS dhparam_options[];
78 extern const OPTIONS dsa_options[];
[all …]

12345678910>>...356