# File lib/xsd/namedelements.rb, line 97
  def find_all
    o = NamedElements.new
    each do |ele|
      o << ele if yield(ele)
    end
    o
  end