Home
last modified time | relevance | path

Searched refs:options (Results 1 - 25 of 3980) sorted by relevance

12345678910>>...160

/third_party/backends/testsuite/sanei/
H A Dsanei_config_test.c173 SANE_Option_Descriptor *options[2]; in string_option() local
178 options[i] = in string_option()
180 options[i]->name = "modelname"; in string_option()
181 options[i]->title = "model name"; in string_option()
182 options[i]->desc = "user provided scanner's model name"; in string_option()
183 options[i]->type = SANE_TYPE_STRING; in string_option()
184 options[i]->unit = SANE_UNIT_NONE; in string_option()
185 options[i]->size = 128; in string_option()
186 options[i]->cap = SANE_CAP_SOFT_SELECT; in string_option()
187 options[ in string_option()
229 SANE_Option_Descriptor *options[1]; int_option() local
272 SANE_Option_Descriptor *options[1]; wrong_range_int_option() local
315 SANE_Option_Descriptor *options[1]; word_array_option() local
361 SANE_Option_Descriptor *options[1]; string_list_option() local
404 SANE_Option_Descriptor *options[1]; wrong_string_list_option() local
449 SANE_Option_Descriptor *options[9]; umax_pp() local
599 SANE_Option_Descriptor *options[2]; wrong_bool_option() local
652 SANE_Option_Descriptor *options[3]; bool_option() local
723 SANE_Option_Descriptor *options[3]; fixed_option() local
794 SANE_Option_Descriptor *options[1]; wrong_fixed_option() local
832 SANE_Option_Descriptor *options[1]; snapscan() local
[all...]
/third_party/gn/src/gn/
H A 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 in TEST()
96 LinkerOptions options; TEST() local
[all...]
/third_party/node/lib/
H A Dchild_process.js120 * }} [options]
123 function fork(modulePath, args = [], options) {
126 // Get options and args arguments.
132 options = args;
138 if (options != null) {
139 validateObject(options, 'options');
141 options = { __proto__: null, ...options, shell: false };
142 options
[all...]
H A Dhttps.js126 function createConnection(port, host, options) {
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
[all...]
H A D_tls_wrap.js90 } = require('internal/options');
107 const kConnectOptions = Symbol('connect-options');
525 validateBoolean(enableTrace, 'options.enableTrace');
679 const options = this._tlsOptions;
681 handle = options.pipe ?
688 const context = options.secureContext ||
689 options.credentials ||
690 tls.createSecureContext(options);
697 !!options.isServer,
798 const options
[all...]
H A Dvm.js67 constructor(code, options = kEmptyObject) {
69 if (typeof options === 'string') {
70 options = { filename: options };
72 validateObject(options, 'options');
83 } = options;
85 validateString(filename, 'options.filename');
86 validateInt32(lineOffset, 'options.lineOffset');
87 validateInt32(columnOffset, 'options
[all...]
H A D_http_agent.js90 function Agent(options) {
92 return new Agent(options);
99 this.options = { __proto__: null, ...options };
101 if (this.options.noDelay === undefined)
102 this.options.noDelay = true;
105 this.options.path = null;
109 this.keepAliveMsecs = this.options.keepAliveMsecs || 1000;
110 this.keepAlive = this.options.keepAlive || false;
111 this.maxSockets = this.options
[all...]
/third_party/node/deps/v8/tools/testrunner/
H A Dnum_fuzzer.py102 def _process_options(self, options):
103 if not options.fuzzer_random_seed:
104 options.fuzzer_random_seed = random_utils.random_seed()
106 if options.total_timeout_sec:
107 options.tests_count = 0
109 if options.combine_tests:
110 if options.combine_min > options.combine_max:
112 options.min_group_size, options
[all...]
H A Dstandard_runner.py152 def _process_options(self, options):
153 if options.sancov_dir:
154 self.sancov_dir = options.sancov_dir
159 if options.gc_stress:
160 options.extra_flags += GC_STRESS_FLAGS
162 if options.random_gc_stress:
163 options.extra_flags += RANDOM_GC_STRESS_FLAGS
166 options.extra_flags.append('--invoke-weak-callbacks')
168 if options.novfp3:
169 options
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdestructuringAssignmentWithDefault.js8 function f1(options?: { color?: string, width?: number }) {
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
[all...]
/third_party/node/deps/cares/src/lib/
H A 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 in ares_destroy_options()
85 ares_save_options(ares_channel_t *channel, struct ares_options *options, int *optmask) ares_save_options() argument
256 ares__init_by_options(ares_channel_t *channel, const struct ares_options *options, int optmask) ares__init_by_options() argument
[all...]
/third_party/node/lib/internal/streams/
H A Doperators.js44 function compose(stream, options) {
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) {
[all...]
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A Dprocessor.js8 function Processor(func, options) {
11 this.options = options;
14 _proto._shouldUpdateSelector = function _shouldUpdateSelector(rule, options) {
15 if (options === void 0) {
16 options = {};
18 var merged = Object.assign({}, this.options, options);
25 _proto._isLossy = function _isLossy(options) {
26 if (options
[all...]
/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/
H A Doptions.js12 const { strictSSL, ...options } = { ...opts }
13 options.method = options.method ? options.method.toUpperCase() : 'GET'
14 options.rejectUnauthorized = strictSSL !== false
16 if (!options.retry) {
17 options.retry = { retries: 0 }
18 } else if (typeof options.retry === 'string') {
19 const retries = parseInt(options.retry, 10)
21 options
[all...]
/third_party/libinput/tools/
H A Dshared.c99 tools_init_options(struct tools_options *options) in tools_init_options() argument
101 memset(options, 0, sizeof(*options)); in tools_init_options()
102 options->tapping = -1; in tools_init_options()
103 options->tap_map = -1; in tools_init_options()
104 options->drag = -1; in tools_init_options()
105 options->drag_lock = -1; in tools_init_options()
106 options->natural_scroll = -1; in tools_init_options()
107 options->left_handed = -1; in tools_init_options()
108 options in tools_init_options()
126 tools_parse_option(int option, const char *optarg, struct tools_options *options) tools_parse_option() argument
457 tools_device_apply_config(struct libinput_device *device, struct tools_options *options) tools_device_apply_config() argument
[all...]
/third_party/node/deps/v8/tools/gcmole/
H A Dgcmole.py88 def make_clang_command_line(plugin, plugin_args, options):
89 arch_cfg = ARCHITECTURES[options.v8_target_cpu]
99 log("Using generated files in {}", options.v8_build_dir / 'gen')
100 icu_src_dir = options.v8_root_dir / 'third_party/icu/source'
102 options.clang_bin_dir / "clang++",
108 options.clang_plugins_dir / "libgcmole.so",
126 "-I{}".format(options.v8_root_dir),
127 "-I{}".format(options.v8_root_dir / 'include'),
128 "-I{}".format(options.v8_build_dir / 'gen'),
165 def invoke_clang_plugin_for_each_file(filenames, plugin, plugin_args, options)
[all...]
/third_party/node/deps/npm/node_modules/write-file-atomic/lib/
H A Dindex.js78 async function writeFileAsync (filename, data, options = {}) {
79 if (typeof options === 'string') {
80 options = { encoding: options }
94 if (!options.mode || !options.chown) {
99 if (options.mode == null) {
100 options.mode = stats.mode
103 if (options.chown == null && process.getuid) {
104 options
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
H A Dindex.js12 // with the virtual tree, and then applies the options requesting
68 constructor (options = {}) {
70 super(options)
71 this.options = {
73 ...options,
75 binLinks: 'binLinks' in options ? !!options.binLinks : true,
76 cache: options.cache || `${homedir()}/.npm/_cacache`,
77 force: !!options.force,
78 global: !!options
[all...]
/third_party/node/tools/icu/
H A Dicutrim.py12 # Use "-h" to get help options.
87 (options, args) = parser.parse_args()
89 optVars = vars(options)
96 if options.verbose>0:
97 print("Options: "+str(options))
99 if (os.path.isdir(options.tmpdir) and options.deltmpdir):
100 if options.verbose>1:
101 print("Deleting tmp dir %s.." % (options.tmpdir))
102 shutil.rmtree(options
[all...]
/third_party/rust/crates/bindgen/bindgen/
H A Dlib.rs255 options: BindgenOptions,
282 if let Some(header) = self.options.input_headers.last().cloned() { in command_line_flags()
288 output_vector.push(self.options.rust_target.into()); in command_line_flags()
293 if !self.options.rust_features.untagged_union && in command_line_flags()
294 RustFeatures::from(self.options.rust_target).untagged_union in command_line_flags()
299 if self.options.default_enum_style != Default::default() { in command_line_flags()
302 match self.options.default_enum_style { in command_line_flags()
330 if self.options.default_macro_constant_type != Default::default() { in command_line_flags()
333 .push(self.options.default_macro_constant_type.as_str().into()); in command_line_flags()
336 if self.options in command_line_flags()
521 let mut options: Vec<String> = Vec::new(); command_line_flags() variables
2265 macro_rules! options { default() macros
[all...]
/third_party/protobuf/src/google/protobuf/compiler/js/
H A Djs_generator.cc119 std::string GetJSFilename(const GeneratorOptions& options, in GetJSFilename() argument
121 return StripProto(filename) + options.GetFileNameExtension(); in GetJSFilename()
166 std::string GetNamespace(const GeneratorOptions& options, in GetNamespace() argument
168 if (!options.namespace_prefix.empty()) { in GetNamespace()
169 return options.namespace_prefix; in GetNamespace()
196 std::string GetPrefix(const GeneratorOptions& options, in GetPrefix() argument
199 std::string prefix = GetNamespace(options, file_descriptor) + in GetPrefix()
209 std::string GetMessagePathPrefix(const GeneratorOptions& options, in GetMessagePathPrefix() argument
211 return GetPrefix(options, descriptor->file(), descriptor->containing_type()); in GetMessagePathPrefix()
216 std::string GetMessagePath(const GeneratorOptions& options, in GetMessagePath() argument
223 GetEnumPathPrefix(const GeneratorOptions& options, const EnumDescriptor* enum_descriptor) GetEnumPathPrefix() argument
231 GetEnumPath(const GeneratorOptions& options, const EnumDescriptor* enum_descriptor) GetEnumPath() argument
236 MaybeCrossFileRef(const GeneratorOptions& options, const FileDescriptor* from_file, const Descriptor* to_message) MaybeCrossFileRef() argument
253 SubmessageTypeRef(const GeneratorOptions& options, const FieldDescriptor* field) SubmessageTypeRef() argument
379 GetExtensionFileName(const GeneratorOptions& options, const FileDescriptor* file, bool with_filename) GetExtensionFileName() argument
393 GetMessagesFileName(const GeneratorOptions& options, const SCC* scc, bool with_package) GetMessagesFileName() argument
434 GetEnumFileName(const GeneratorOptions& options, const EnumDescriptor* desc, bool with_package) GetEnumFileName() argument
479 JSIdent(const GeneratorOptions& options, const FieldDescriptor* field, bool is_upper_camel, bool is_map, bool drop_list) JSIdent() argument
501 JSObjectFieldName(const GeneratorOptions& options, const FieldDescriptor* field) JSObjectFieldName() argument
529 JSGetterName(const GeneratorOptions& options, const FieldDescriptor* field, BytesMode bytes_mode = BYTES_DEFAULT, bool drop_list = false) JSGetterName() argument
876 ProtoTypeName(const GeneratorOptions& options, const FieldDescriptor* field) ProtoTypeName() argument
924 JSStringTypeName(const GeneratorOptions& options, const FieldDescriptor* field, BytesMode bytes_mode) JSStringTypeName() argument
942 JSTypeName(const GeneratorOptions& options, const FieldDescriptor* field, BytesMode bytes_mode) JSTypeName() argument
971 UseBrokenPresenceSemantics(const GeneratorOptions& options, const FieldDescriptor* field) UseBrokenPresenceSemantics() argument
980 ReturnsNullWhenUnset(const GeneratorOptions& options, const FieldDescriptor* field) ReturnsNullWhenUnset() argument
998 DeclaredReturnTypeIsNullable(const GeneratorOptions& options, const FieldDescriptor* field) DeclaredReturnTypeIsNullable() argument
1012 SetterAcceptsUndefined(const GeneratorOptions& options, const FieldDescriptor* field) SetterAcceptsUndefined() argument
1022 SetterAcceptsNull(const GeneratorOptions& options, const FieldDescriptor* field) SetterAcceptsNull() argument
1042 JSFieldTypeAnnotation(const GeneratorOptions& options, const FieldDescriptor* field, bool is_setter_argument, bool force_present, bool singular_if_not_packed, BytesMode bytes_mode = BYTES_DEFAULT, bool force_singular = false) JSFieldTypeAnnotation() argument
1110 JSBinaryReaderMethodName(const GeneratorOptions& options, const FieldDescriptor* field) JSBinaryReaderMethodName() argument
1116 JSBinaryWriterMethodName(const GeneratorOptions& options, const FieldDescriptor* field) JSBinaryWriterMethodName() argument
1162 HasRepeatedFields(const GeneratorOptions& options, const Descriptor* desc) HasRepeatedFields() argument
1174 RepeatedFieldsArrayName(const GeneratorOptions& options, const Descriptor* desc) RepeatedFieldsArrayName() argument
1192 OneofFieldsArrayName(const GeneratorOptions& options, const Descriptor* desc) OneofFieldsArrayName() argument
1199 RepeatedFieldNumberList(const GeneratorOptions& options, const Descriptor* desc) RepeatedFieldNumberList() argument
1231 JSOneofArray(const GeneratorOptions& options, const FieldDescriptor* field) JSOneofArray() argument
1264 JSExtensionsObjectName(const GeneratorOptions& options, const FileDescriptor* from_file, const Descriptor* desc) JSExtensionsObjectName() argument
1288 FieldDefinition(const GeneratorOptions& options, const FieldDescriptor* field) FieldDefinition() argument
1367 HasMap(const GeneratorOptions& options, const Descriptor* desc) HasMap() argument
1381 FileHasMap(const GeneratorOptions& options, const FileDescriptor* desc) FileHasMap() argument
1419 HasFieldPresence(const GeneratorOptions& options, const FieldDescriptor* field) HasFieldPresence() argument
1435 FileDeduplicator(const GeneratorOptions& options) FileDeduplicator() argument
1561 GenerateJspbAllowedMap(const GeneratorOptions& options, const std::vector<const FileDescriptor*>& files, std::map<const void*, std::string>* allowed_set, SCCAnalyzer<DepsGenerator>* analyzer, std::string* error) GenerateJspbAllowedMap() argument
1640 GenerateHeader(const GeneratorOptions& options, const FileDescriptor* file, io::Printer* printer) const GenerateHeader() argument
1660 FindProvidesForFile(const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* file, std::set<std::string>* provided) const FindProvidesForFile() argument
1672 FindProvides(const GeneratorOptions& options, io::Printer* printer, const std::vector<const FileDescriptor*>& files, std::set<std::string>* provided) const FindProvides() argument
1683 FindProvidesForOneOfEnum(const GeneratorOptions& options, const OneofDescriptor* oneof, std::set<std::string>* provided) FindProvidesForOneOfEnum() argument
1691 FindProvidesForOneOfEnums(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc, std::set<std::string>* provided) FindProvidesForOneOfEnums() argument
1704 FindProvidesForMessage(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc, std::set<std::string>* provided) const FindProvidesForMessage() argument
1725 FindProvidesForEnum(const GeneratorOptions& options, io::Printer* printer, const EnumDescriptor* enumdesc, std::set<std::string>* provided) const FindProvidesForEnum() argument
1733 FindProvidesForFields( const GeneratorOptions& options, io::Printer* printer, const std::vector<const FieldDescriptor*>& fields, std::set<std::string>* provided) const FindProvidesForFields() argument
1750 GenerateProvides(const GeneratorOptions& options, io::Printer* printer, std::set<std::string>* provided) const GenerateProvides() argument
1782 GenerateRequiresForSCC(const GeneratorOptions& options, io::Printer* printer, const SCC* scc, std::set<std::string>* provided) const GenerateRequiresForSCC() argument
1805 GenerateRequiresForLibrary( const GeneratorOptions& options, io::Printer* printer, const std::vector<const FileDescriptor*>& files, std::set<std::string>* provided) const GenerateRequiresForLibrary() argument
1854 GenerateRequiresForExtensions( const GeneratorOptions& options, io::Printer* printer, const std::vector<const FieldDescriptor*>& fields, std::set<std::string>* provided) const GenerateRequiresForExtensions() argument
1874 GenerateRequiresImpl(const GeneratorOptions& options, io::Printer* printer, std::set<std::string>* required, std::set<std::string>* forwards, std::set<std::string>* provided, bool require_jspb, bool require_extension, bool require_map) const GenerateRequiresImpl() argument
1916 FindRequiresForMessage(const GeneratorOptions& options, const Descriptor* desc, std::set<std::string>* required, std::set<std::string>* forwards, bool* have_message) const FindRequiresForMessage() argument
1947 FindRequiresForField(const GeneratorOptions& options, const FieldDescriptor* field, std::set<std::string>* required, std::set<std::string>* forwards) const FindRequiresForField() argument
1967 FindRequiresForExtension( const GeneratorOptions& options, const FieldDescriptor* field, std::set<std::string>* required, std::set<std::string>* forwards) const FindRequiresForExtension() argument
1976 GenerateTestOnly(const GeneratorOptions& options, io::Printer* printer) const GenerateTestOnly() argument
1984 GenerateClassesAndEnums(const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* file) const GenerateClassesAndEnums() argument
1999 GenerateClass(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClass() argument
2042 GenerateClassConstructor(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassConstructor() argument
2089 GenerateClassConstructorAndDeclareExtensionFieldInfo( const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassConstructorAndDeclareExtensionFieldInfo() argument
2106 GenerateClassFieldInfo(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassFieldInfo() argument
2151 GenerateClassXid(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassXid() argument
2161 GenerateOneofCaseDefinition( const GeneratorOptions& options, io::Printer* printer, const OneofDescriptor* oneof) const GenerateOneofCaseDefinition() argument
2202 GenerateClassToObject(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassToObject() argument
2335 GenerateClassFieldToObject(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateClassFieldToObject() argument
2407 GenerateObjectTypedef(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateObjectTypedef() argument
2438 GenerateClassFromObject(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassFromObject() argument
2469 GenerateClassFieldFromObject( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateClassFieldFromObject() argument
2524 GenerateClassRegistration(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassRegistration() argument
2537 GenerateClassFields(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassFields() argument
2547 GenerateBytesWrapper(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field, BytesMode bytes_mode) GenerateBytesWrapper() argument
2576 GenerateClassField(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateClassField() argument
2933 GenerateRepeatedPrimitiveHelperMethods( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field, bool untyped) const GenerateRepeatedPrimitiveHelperMethods() argument
2972 GenerateRepeatedMessageHelperMethods( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateRepeatedMessageHelperMethods() argument
3000 GenerateClassExtensionFieldInfo(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassExtensionFieldInfo() argument
3049 GenerateClassDeserializeBinary(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassDeserializeBinary() argument
3117 GenerateClassDeserializeBinaryField( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateClassDeserializeBinaryField() argument
3192 GenerateClassSerializeBinary(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const GenerateClassSerializeBinary() argument
3239 GenerateClassSerializeBinaryField( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateClassSerializeBinaryField() argument
3352 GenerateEnum(const GeneratorOptions& options, io::Printer* printer, const EnumDescriptor* enumdesc) const GenerateEnum() argument
3387 GenerateExtension(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const GenerateExtension() argument
3466 ParseFromOptions( const std::vector<std::pair<std::string, std::string> >& options, std::string* error) ParseFromOptions() argument
3570 GenerateFilesInDepOrder( const GeneratorOptions& options, io::Printer* printer, const std::vector<const FileDescriptor*>& files) const GenerateFilesInDepOrder() argument
3583 GenerateFileAndDeps( const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* root, std::set<const FileDescriptor*>* all_files, std::set<const FileDescriptor*>* generated) const GenerateFileAndDeps() argument
3607 GenerateFile(const FileDescriptor* file, const GeneratorOptions& options, GeneratorContext* context, bool use_short_name) const GenerateFile() argument
3637 GenerateFile(const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* file) const GenerateFile() argument
3722 GeneratorOptions options; GenerateAll() local
[all...]
/third_party/cJSON/tests/unity/auto/
H A Dgenerate_module.rb47 def initialize(options = nil)
50 @options = UnityModuleGenerator.default_options
51 case options
52 when NilClass then @options
53 when String then @options.merge!(UnityModuleGenerator.grab_config(options))
54 when Hash then @options.merge!(options)
55 else raise 'If you specify arguments, it should be a filename or a hash of options'
59 @options[
[all...]
/third_party/node/deps/npm/node_modules/socks/build/common/
H A Dhelpers.js11 * @param options { SocksClientOptions }
14 function validateSocksClientOptions(options, acceptedCommands = ['connect', 'bind', 'associate']) {
16 if (!constants_1.SocksCommand[options.command]) {
17 throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksCommand, options);
20 if (acceptedCommands.indexOf(options.command) === -1) {
21 throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksCommandForOperation, options);
24 if (!isValidSocksRemoteHost(options.destination)) {
25 throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsDestination, options);
28 if (!isValidSocksProxy(options.proxy)) {
29 throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsProxy, options);
[all...]
/third_party/unity/auto/
H A Dgenerate_test_runner.rb10 def initialize(options = nil)
11 @options = UnityTestRunnerGenerator.default_options
12 case options
14 @options
16 @options.merge!(UnityTestRunnerGenerator.grab_config(options))
19 @options[:has_setup] = !options[:setup_name].nil?
20 @options[:has_teardown] = !options[
[all...]
/third_party/node/deps/icu-small/source/tools/genccode/
H A Dgenccode.c79 static UOption options[]={ variable
105 options[kOptDestDir].value = "."; in main()
107 /* read command line options */ in main()
108 argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options); in main()
116 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) { in main()
118 "usage: %s [-options] filename1 filename2 ...\n" in main()
121 "options:\n" in main()
145 if(options[kOptAssembl in main()
[all...]

Completed in 12 milliseconds

12345678910>>...160