Searched refs:collect (Results 51 - 75 of 345) sorted by relevance

1234567891011>>

/macosx-10.10.1/emacs-93/emacs/lisp/mh-e/
H A Dmh-tool-bar.el294 collect `(cons ',button ,vector))))
298 collect `(cons ',button ,vector))))
302 collect `(cons ',button ,vector))))
312 collect (cdr
319 collect (cdr (assoc b mh-tool-bar-folder-vector-map))))
322 collect (cdr (assoc b mh-tool-bar-show-vector-map))))))
362 collect `(const :tag ,y ,x)))
373 collect `(const :tag ,y ,x)))
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dplace.rb50 win)).collect{|conflist|
52 conf = simplelist(conflist).collect!{|inf| tk_tcl2ruby(inf)}
H A Dkinput.rb55 tk_split_list(tk_call('kanjiInput', 'attribute', win)).collect{|conf|
H A Dpanedwindow.rb24 # args = args.collect{|w| (w.kind_of?(TkObject))? w.epath: w }
25 args = args.collect{|w| _epath(w) }
30 # args = args.collect{|w| (w.kind_of?(TkObject))? w.epath: w }
31 args = args.collect{|w| _epath(w) }
40 tk_send_without_enc('forget', *(wins.collect{|w| _epath(w)}))
144 # win)).collect{|conflist|
147 false, false).collect{|conflist|
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dtree.rb179 tk_send('delete', *(args.collect{|node| tagid(node)}))
225 simplelist(tk_send('nodes', tagid(node), first, last)).collect{|node|
255 *(args.collect{|node| tagid(node)}))
270 *(args.collect{|node| tagid(node)})))
275 *(args.collect{|node| tagid(node)}))
281 *(args.collect{|node| tagid(node)}))
287 *(args.collect{|node| tagid(node)}))
293 *(args.collect{|node| tagid(node)}))
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dtext.rb22 if ((Tk::TK_VERSION.split('.').collect{|n| n.to_i} <=> [8,4]) < 0)
/macosx-10.10.1/ruby-106/ruby/test/rss/
H A Dtest_trackback.rb24 @content_nodes = @elems.collect do |name, value|
28 @content_nodes2 = @elems.collect do |name, value|
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dtree.rb349 simplelist(tk_call(@tpath, 'tag', 'nodes', @id)).collect{|node|
438 args = args.collect{|arg| '-' << arg.to_s}
463 lst[1] = simplelist(lst[1]).collect{|flag| flag[1..-1]}
614 simplelist(tk_call('::blt::tree', 'names', pat)).collect{|name|
621 *(names.collect{|n| (n.kind_of?(Tk::BLT::Tree))? n.id: n }) )
698 simplelist(tk_call('::blt::tree', 'children', tagid(node))).collect{|n|
721 tk_call('::blt::tree', 'delete', *(nodes.collect{|node| tagid(node)}))
739 simplelist(tk_call('::blt::tree', 'dump', tagid(node))).collect{|n|
755 __conv_keyonly_opts(keys))).collect{|n|
810 *(nodes.collect{|
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dmatrix.rb55 # * #collect
378 # Matrix[ [1,2], [3,4] ].collect { |e| e**2 }
382 def collect(&block) # :yield: e method
383 return to_enum(:collect) unless block_given?
384 rows = @rows.collect{|row| row.collect(&block)}
387 alias map collect
586 rows = @rows[from_row, size_row].collect{|row|
809 rows = @rows.collect {|row|
810 row.collect {|
1763 def collect(&block) # :yield: e method in class:Vector
[all...]
H A Dfind.rb40 paths.collect!{|d| raise Errno::ENOENT unless File.exist?(d); d.dup}
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DFullGCActivityCallback.cpp57 heap->collect(FullCollection);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcssmcred.cpp53 bool SampleGroup::collect(CSSM_SAMPLE_TYPE sampleType, list<CssmSample> &matches) const function in class:Security::SampleGroup
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dheadermap.h68 std::string collect(const char *lineEnding = "\r\n") const;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dcssmcred.cpp53 bool SampleGroup::collect(CSSM_SAMPLE_TYPE sampleType, list<CssmSample> &matches) const function in class:Security::SampleGroup
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dheadermap.h68 std::string collect(const char *lineEnding = "\r\n") const;
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebJavaScriptCollector.cpp93 HRESULT STDMETHODCALLTYPE WebJavaScriptCollector::collect() function in class:WebJavaScriptCollector
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dpanelframe.rb76 simplelist(tk_send('items')).collect!{|w| window(w)}
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dfile_list.rb56 map collect sort sort_by select find_all reject grep
61 DELEGATING_METHODS = (ARRAY_METHODS + MUST_DEFINE - MUST_NOT_DEFINE).collect{ |s| s.to_s }.sort.uniq
264 collect { |fn| fn.pathmap(spec) }
272 # array.collect { |item| item.ext(newext) }
276 collect { |fn| fn.ext(newext) }
H A Dtask.rb56 prerequisites.collect { |pre| lookup_prerequisite(pre) }
194 futures = prerequisite_tasks.collect do |p|
241 prerequisite_tasks.collect { |pre| pre.timestamp }.max || Time.now
294 latest_prereq = prerequisite_tasks.collect { |pre| pre.timestamp }.max
H A Dtask_arguments.rb26 values = names.collect { |n| self[n] }
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dquickpath.rb87 return filter( elements.collect{|e|e.parent}, $' )
132 matches = filter(elements.collect{|element| element.parent}.uniq, rest)
134 matches = filter(elements.collect{|element| element.next_sibling}.uniq,
137 matches = filter(elements.collect{|element|
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Dwhich_command.rb74 spec.require_paths.collect { |d| File.join spec.full_gem_path, d }
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_martin_fowler.rb22 @names = @figs.collect {|f| f.attributes['src']}
/macosx-10.10.1/ruby-106/ruby/test/uri/
H A Dtest_ftp.rb57 ary = u.component.collect {|c| u.send(c)}
H A Dtest_parser.rb6 uri.class.component.collect {|c| uri.send(c)}

Completed in 224 milliseconds

1234567891011>>