method

_find_all

_find_all(path, prefixes, args)
private

No documentation available.

# File actionview/lib/action_view/path_set.rb, line 73
      def _find_all(path, prefixes, args)
        prefixes = [prefixes] if String === prefixes
        prefixes.each do |prefix|
          paths.each do |resolver|
            templates = resolver.find_all(path, prefix, *args)
            return templates unless templates.empty?
          end
        end
        []
      end