method

_find_all

_find_all(path, prefixes, args, outside_app)
private

No documentation available.

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