Searched defs:filenames (Results 1 - 2 of 2) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/index/
H A DFilter.java38 /** The list of exact filenames */
39 private final Set<String> filenames; field in class:Filter
40 /** The list of filenames with wildcards */
51 filenames = new HashSet<>();
97 filenames.clear();
103 * Does the file match any of the filenames, patterns or paths ?
111 if (filenames.contains(fileName)) {
140 * Does the file name match any of the filenames, patterns or paths ?
163 filenames.add(pattern);
/opengrok/src/org/opensolaris/opengrok/web/
H A DPageConfig.java372 * Get a list of filenames in the requested path.
375 * or an error occurred when reading it, otherwise a list of filenames in
1101 * @param filenames filenames to lookup.
1107 public File[] findDataFiles(List<String> filenames) { argument
1108 if (filenames == null || filenames.isEmpty()) {
1111 File[] res = new File[filenames.size()];
1117 res[i] = checkFileResolve(dir, filenames.get(i), compressed);

Completed in 11 milliseconds