Searched refs:options (Results 101 - 125 of 3146) sorted by relevance

1234567891011>>

/macosx-10.10.1/cups-408/cups/systemv/
H A Dlpoptions.c42 int num_options; /* Number of options */
43 cups_option_t *options; /* Options */ local
62 options = NULL;
108 if (cupsGetOption(dest->options[j].name, num_options,
109 options) == NULL)
110 num_options = cupsAddOption(dest->options[j].name,
111 dest->options[j].value,
112 num_options, &options);
132 case 'l' : /* -l (list options) */
166 if (cupsGetOption(dest->options[
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/cgi/
H A Dcookie.rb52 # A Hash of options to initialize this Cookie. Possible options are:
76 options = name
77 unless options.has_key?("name")
81 @name = options["name"]
82 value = Array(options["value"])
84 if options["path"]
85 @path = options["path"]
90 @domain = options["domain"]
91 @expires = options["expire
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Dyank_command.rb29 add_option('--undo') do |value, options|
30 options[:undo] = true
34 'Use API key from your gem credentials file') do |value, options|
35 options[:key] = value
42 version = get_version_from_requirements(options[:version])
43 platform = get_platform_from_requirements(options)
45 api_key = Gem.configuration.api_keys[options[:key].to_sym] if options[:key]
48 if options[:undo] then
H A Dgenerate_index_command.rb17 'repository base dir containing gems subdir' do |dir, options|
18 options[:directory] = File.expand_path dir
23 '(always true)' do |value, options|
24 options[:build_modern] = value
29 'since the last update' do |value, options|
30 options[:update] = value
66 options[:build_modern] = true
68 if not File.exist?(options[:directory]) or
69 not File.directory?(options[:directory]) then
73 indexer = Gem::Indexer.new options
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/
H A DIOCFUnserialize.h46 CFOptionFlags options,
54 CFOptionFlags options,
62 CFOptionFlags options,
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DDictionaryPopupInfo.cpp42 bool hadOptions = options;
45 IPC::encode(encoder, options.get());
58 if (!IPC::decode(decoder, result.options))
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dmenuspec.rb95 options = orig_opts.dup
96 options.update(_symbolkey2str(item_info))
97 item_type = (options.delete('type') || 'command').to_s
98 menu_name = options.delete('menu_name')
100 menu_opts.update(_symbolkey2str(options.delete('menu_config') || {}))
101 if item_type == 'cascade' && options['menu'].kind_of?(Array)
103 submenu = _create_menu(menu, options['menu'], menu_name,
105 options['menu'] = submenu
107 case options['underline']
109 if options['labe
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dfile_utils.rb34 options = (Hash === cmd.last) ? cmd.pop : {}
36 set_verbose_option(options)
37 options[:noop] ||= Rake::FileUtilsExt.nowrite_flag
38 Rake.rake_check_options options, :noop, :verbose
39 Rake.rake_output_message cmd.join(" ") if options[:verbose]
41 unless options[:noop]
58 def set_verbose_option(options) # :nodoc:
59 unless options.key? :verbose
60 options[:verbose] =
78 options
[all...]
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/legacy/
H A Dgetattrlist.c51 size_t attrBufSize, unsigned int options)
54 size_t attrBufSize, unsigned long options)
57 int ret = __getattrlist(path, attrList, attrBuf, attrBufSize, options);
50 getattrlist(const char *path, void *attrList, void *attrBuf, size_t attrBufSize, unsigned int options) argument
H A Dsetattrlist.c51 size_t attrBufSize, unsigned int options)
54 size_t attrBufSize, unsigned long options)
57 int ret = __setattrlist(path, attrList, attrBuf, attrBufSize, options);
50 setattrlist(const char *path, void *attrList, void *attrBuf, size_t attrBufSize, unsigned int options) argument
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_install_update_options.rb37 assert_equal %w[ri], @cmd.options[:document].sort
43 assert_equal %w[rdoc], @cmd.options[:document]
47 assert_equal %w[ri], @cmd.options[:document]
53 assert_equal %w[rdoc ri], @cmd.options[:document]
59 assert_equal [], @cmd.options[:document]
65 assert_equal %w[ri], @cmd.options[:document].sort
71 assert_equal %w[], @cmd.options[:document]
77 assert_equal %w[rdoc], @cmd.options[:document]
81 assert_equal %w[ri], @cmd.options[:document]
87 assert_equal %w[rdoc ri], @cmd.options[
[all...]
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEvent.h55 bool initWithTypeTimeStamp(IOHIDEventType type, AbsoluteTime timeStamp, IOOptionBits options = 0, IOByteCount additionalCapacity=0);
64 IOOptionBits options = 0);
74 IOOptionBits options = 0);
81 IOOptionBits options = 0);
89 IOOptionBits options = 0);
98 IOOptionBits options = 0);
105 IOOptionBits options = 0);
112 IOOptionBits options = 0);
119 IOOptionBits options = 0);
129 IOOptionBits options
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationsettings.cpp28 options(other.options), variableTop(other.variableTop),
56 if(options != other.options) { return FALSE; }
57 if((options & ALTERNATE_MASK) != 0 && variableTop != other.variableTop) { return FALSE; }
67 int32_t h = options << 8;
68 if((options & ALTERNATE_MASK) != 0) { h ^= variableTop; }
133 int32_t noStrength = options & ~STRENGTH_MASK;
140 options = noStrength | (value << STRENGTH_SHIFT);
143 options
[all...]
/macosx-10.10.1/OpenSSL098-52/src/
H A Dconfig35 Usage: config [options]
45 *) options=$options" $i" ;;
495 options="$options -mips2"
503 # options="$options -mips4"
505 # options="$options -mips3"
519 # options
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/hid.subproj/
H A DIOHIDDevicePlugIn.h211 IOReturn (*open)(void * self, IOOptionBits options); \
212 IOReturn (*close)(void * self, IOOptionBits options); \
216 IOReturn (*copyMatchingElements)(void * self, CFDictionaryRef matchingDict, CFArrayRef * pElements, IOOptionBits options); \
217 IOReturn (*setValue)(void * self, IOHIDElementRef element, IOHIDValueRef value, uint32_t timeout, IOHIDValueCallback callback, void * context, IOOptionBits options); \
218 IOReturn (*getValue)(void * self, IOHIDElementRef element, IOHIDValueRef * pValue, uint32_t timeout, IOHIDValueCallback callback, void * context, IOOptionBits options); \
219 IOReturn (*setInputReportCallback)(void * self, uint8_t * report, CFIndex reportLength, IOHIDReportCallback callback, void * context, IOOptionBits options); \
220 IOReturn (*setReport)(void * self, IOHIDReportType reportType, uint32_t reportID, const uint8_t * report, CFIndex reportLength, uint32_t timeout, IOHIDReportCallback callback, void * context, IOOptionBits options); \
221 IOReturn (*getReport)(void * self, IOHIDReportType reportType, uint32_t reportID, uint8_t * report, CFIndex * pReportLength, uint32_t timeout, IOHIDReportCallback callback, void * context, IOOptionBits options)
239 @param options Option bits to be passed down to the user client.
242 IOReturn (*open)(void * self, IOOptionBits options);
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/charperf/
H A DCharPerf_r.pl16 my $options = {
56 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/collperf/
H A DCollPerf_r.pl16 my $options = {
79 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/collperf2/
H A DCollPerf2_r.pl37 my $options = {
202 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/normperf/
H A DNormPerf_r.pl16 my $options = {
86 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/strsrchperf/
H A DStrSrchPerf_r.pl16 my $options = {
60 runTests( $options, $tests, $dataFiles );
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/ubrkperf/
H A DUBrkPerf_r.pl15 my $options = {
93 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/usetperf/
H A DUsetPerf.pl18 my $options = {
55 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/ustrperf/
H A DStringPerf_r.pl16 my $options = {
77 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/utfperf/
H A DUtfPerf.pl16 my $options = {
50 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIOGraphicsInterface.h67 IOOptionBits options,
76 IOOptionBits options,
90 (void *thisPointer, IOOptionBits options);
95 (void *thisPointer, IOOptionBits options,
103 (void *thisPointer, IOOptionBits options);
106 (void *thisPointer, IOOptionBits options,
112 (void *thisPointer, UInt32 options,
115 (void *thisPointer, IOOptionBits options, SInt32 * position);
117 (void *thisPointer, IOOptionBits options,
120 (void *thisPointer, IOOptionBits options, IOBlitSurfac
[all...]

Completed in 498 milliseconds

1234567891011>>