Searched refs:specs (Results 1 - 25 of 117) sorted by relevance

12345

/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/vmx/
H A Dvmx_cpu.c72 vmx_is_cr0_valid(vmx_specs_t *specs) argument
75 return (0 == ((~cr0 & specs->cr0_fixed_0)|(cr0 & ~specs->cr0_fixed_1)));
83 vmx_is_cr4_valid(vmx_specs_t *specs) argument
86 return (0 == ((~cr4 & specs->cr4_fixed_0)|(cr4 & ~specs->cr4_fixed_1)));
119 vmx_specs_t *specs = &current_cpu_datap()->cpu_vmx.specs; local
131 if (specs->initialized)
134 specs
[all...]
H A Dvmx_cpu.h41 boolean_t initialized; /* the specs have already been read */
88 vmx_specs_t specs; /* this phys CPU's VMX specifications */ member in struct:vmx_cpu
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Ddependency_list.rb19 attr_reader :specs
30 # Creates a DependencyList from the current specs.
43 @specs = []
52 @specs.concat gemspecs
56 @specs.clear
102 @specs.find { |spec| spec.full_name == full_name }
125 unless inst or @specs.find { |s| s.satisfies_requirement? dep } then
144 siblings = @specs.find_all { |s|
151 @specs.each do |spec|
172 specs
[all...]
H A Dspec_fetcher.rb16 # Cache of latest specs
21 # Cache of all released specs
23 attr_reader :specs # :nodoc:
26 # Cache of prerelease specs
41 @dir = File.join Gem.user_home, '.gem', 'specs'
49 @specs = {}
56 :released => @specs,
82 list.each do |source, specs|
83 found[source] = specs.select do |tup|
102 found.each do |source, specs|
[all...]
H A Dsource_local.rb11 @specs = {}
20 @specs[tup] = [File.expand_path(file), pkg]
56 @specs.each do |n, data|
76 if data = @specs[name]
86 @specs.each do |name, data|
H A Dserver.rb14 # * "/specs.#{Gem.marshal_version}.gz" - specs name/version/platform index
15 # * "/latest_specs.#{Gem.marshal_version}.gz" - latest specs
70 <%= values["specs"].map { |v| "<a href=\"##{v["name"]}\">#{v["name"]}</a>" }.join ', ' %>.
74 <% values["specs"].each do |spec| %>
481 specs = latest_specs.sort.map do |spec|
486 specs = Marshal.dump specs
489 specs = Gem.gzip specs
797 def specs(req, res) method
[all...]
H A Drequest_set.rb57 def specs method in class:Gem.RequestSet
58 @specs ||= @requests.map { |r| r.full_spec }
126 specs = []
140 specs << inst.install
143 specs
/macosx-10.9.5/bless-98/libbless/HFS/
H A DBLUpdateBooter.c44 BLUpdateBooterFileSpec *specs,
43 BLUpdateBooter(BLContextPtr context, const char * device, BLUpdateBooterFileSpec *specs, int32_t specCount) argument
/macosx-10.9.5/CPANInternal-140/Params-Validate/lib/Params/
H A DValidatePP.pm60 my @specs = @_;
67 for ( my $x = $#p + 1; $x <= $#specs; $x++ )
70 $specs[$x]->{default}
71 if ref $specs[$x] && exists $specs[$x]->{default};
85 last unless ( ref $specs[$min] ?
86 ! ( exists $specs[$min]->{default} || $specs[$min]->{optional} ) :
87 $specs[$min] );
92 my $max = scalar @specs;
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/commands/
H A Dspecification_command.rb58 specs = []
93 specs << Gem::Package.new(gem).spec rescue nil
96 if specs.empty? then
97 specs.push(*dep.matching_specs)
105 specs.push(*found.map { |spec,| spec })
108 if specs.empty? then
114 specs = [specs.sort_by { |s| s.version }.last]
117 specs.each do |s|
H A Ddependency_command.rb67 specs = []
69 specs.concat dependency.matching_specs if local?
76 ss.each { |s,o| specs << s }
79 if specs.empty? then
87 specs = specs.uniq.sort
92 specs.each do |spec|
98 specs.each do |spec|
108 specs.each do |spec|
H A Drdoc_command.rb58 specs = if options[:all] then
66 if specs.empty? then
71 specs.each do |spec|
86 terminate_interaction 1 if specs.length == 1
H A Dquery_command.rb105 specs = Gem::Specification.find_all { |s|
109 spec_tuples = specs.map do |spec|
200 def entry_details entry, detail_tuple, specs, platforms
213 spec_loaded_from entry, spec, specs
241 name_tuples, specs = entry_tuples.flatten.partition do |item|
248 entry_details entry, detail_tuple, specs, platforms
273 def spec_loaded_from entry, spec, specs
276 if specs.length == 1 then
281 specs.each do |s|
H A Dpristine_command.rb67 specs = if options[:all] then
75 if specs.to_a.empty? then
87 specs.each do |spec|
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_commands_generate_index_command.rb19 specs = File.join @gemhome, "specs.4.8.gz"
21 assert File.exist?(specs), specs
H A Dtest_gem_spec_fetcher.rb28 @prerelease_specs, @specs = all.partition { |g| g.prerelease? }
36 s_zip = util_gzip(Marshal.dump(Gem::NameTuple.to_basic(@specs)))
39 @fetcher.data["#{@gem_repo}specs.#{v}.gz"] = s_zip
180 specs, _ = @sf.available_specs(:latest)
182 assert_equal [@source], specs.keys
183 assert_equal @latest_specs, specs[@source].sort
187 specs, _ = @sf.available_specs(:released)
189 assert_equal [@source], specs.keys
191 assert_equal @released, specs[@source].sort
195 specs,
[all...]
H A Dtest_gem_indexer.rb55 specs_path = File.join @indexer.directory, "specs.#{@marshal_version}"
57 specs = Marshal.load specs_dump
69 assert_equal expected, specs
104 assert_indexed @tempdir, "specs.#{@marshal_version}"
105 assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
149 assert_indexed @tempdir, "specs.#{@marshal_version}"
150 assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
178 assert_indexed @tempdir, "specs.#{@marshal_version}"
179 assert_indexed @tempdir, "specs.#{@marshal_version}.gz"
194 assert_match %r%^Generating specs inde
[all...]
H A Dtest_gem_commands_sources_command.rb43 specs = Gem::Specification.map { |spec|
49 Marshal.dump specs, io
52 @fetcher.data["#{@new_repo}/specs.#{@marshal_version}.gz"] =
76 uri = "http://beta-gems.example.com/specs.#{@marshal_version}.gz"
127 specs = Gem::Specification.map { |spec|
133 Marshal.dump specs, io
136 @fetcher.data["#{http_rubygems_org}/specs.#{@marshal_version}.gz"] =
191 *** Removed specs cache ***
197 dir = File.join Gem.user_home, '.gem', 'specs'
241 specs
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/examples/
H A Dcgi2dom.tcl23 # specs List of XPath location path specifications
29 proc cgi2dom::createdocument specs {
32 foreach {path value} $specs {
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtridpars.cpp217 Specs* specs = parseFilterID(id, pos, TRUE); local
218 if (specs == NULL) {
224 SingleID* single = specsToID(specs, FORWARD);
226 single->filter = specs->filter;
228 delete specs;
689 * at any location between specs or delimiters, and is returned
812 TransliteratorIDParser::specsToID(const Specs* specs, int32_t dir) { argument
816 if (specs != NULL) {
819 if (specs->sawSource) {
820 buf.append(specs
850 specsToSpecialInverse(const Specs& specs, UErrorCode &status) argument
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/
H A Dxprintf_domain.c207 register_printf_domain_render_std(printf_domain_t d, const char *specs) argument
211 for (; *specs != '\0'; specs++) {
212 switch (*specs) {
214 ret = register_printf_domain_render(d, *specs,
219 ret = register_printf_domain_render(d, *specs,
224 ret = register_printf_domain_render(d, *specs,
229 ret = register_printf_domain_render(d, *specs,
234 ret = register_printf_domain_render(d, *specs,
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkState.c204 Tcl_Obj **specs; local
208 status = Tcl_ListObjGetElements(interp, map, &nSpecs, &specs);
214 status = Ttk_GetStateSpecFromObj(interp, specs[j], &spec);
218 return specs[j+1];
236 Tcl_Obj **specs; local
240 status = Tcl_ListObjGetElements(interp, mapObj, &nSpecs, &specs);
254 if (Ttk_GetStateSpecFromObj(interp, specs[j], &spec) != TCL_OK)
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkOldConfig.c39 Tk_ConfigSpec *specs, CONST char *argvName,
90 * that must be present in config specs
94 register Tk_ConfigSpec *specs, *specPtr, *origSpecPtr;
122 specs = GetCachedSpecs(interp, origSpecs);
124 for (specPtr = specs; specPtr->type != TK_CONFIG_END; specPtr++) {
130 * that match entries in the specs.
141 specPtr = FindConfigSpec(interp, specs, arg, needFlags, hateFlags);
177 for (origSpecPtr = origSpecs, specPtr = specs;
183 * Pass two: scan through all of the specs again; if no
190 for (specPtr=specs; specPt
93 register Tk_ConfigSpec *specs, *specPtr, *origSpecPtr; local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dvms-patch.el225 (let ((specs '(".." "-"))
227 (while specs
228 (let* ((up (car specs))
239 (setq specs nil)))
240 (setq specs (cdr specs)))))
/macosx-10.9.5/emacs-92/emacs/src/
H A Dcallint.c248 doc: /* Call FUNCTION, reading args according to its interactive calling specs.
268 Lisp_Object specs;
323 specs = Qnil;
349 specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE];
358 specs = filter_specs = Fcar (XCDR (form));
364 if (STRINGP (specs))
366 /* Make a copy of string so that if a GC relocates specs,
368 string = (unsigned char *) alloca (SBYTES (specs) + 1);
369 bcopy (SDATA (specs), string,
370 SBYTES (specs)
267 Lisp_Object specs; variable
[all...]

Completed in 388 milliseconds

12345