Searched refs:ignoredNames (Results 1 - 4 of 4) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java127 private IgnoredNames ignoredNames; field in class:Configuration
755 * @param ignoredNames stuff to ignore. If {@code null} defaults will be
758 public void setIgnoredNames(IgnoredNames ignoredNames) { argument
759 this.ignoredNames = ignoredNames == null ? new IgnoredNames() : ignoredNames;
769 return ignoredNames;
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistoryGuru.java374 IgnoredNames ignoredNames, int depth)
376 addRepositories(files, repos, ignoredNames, true, depth);
383 * @param ignoredNames what files to ignore
389 IgnoredNames ignoredNames, boolean recursiveSearch, int depth) {
405 if (file.isDirectory() && !ignoredNames.match(file)) {
412 addRepositories(subFiles, repos, ignoredNames, depth+1);
436 addRepositories(subFiles, repos, ignoredNames,
373 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, int depth) argument
388 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, boolean recursiveSearch, int depth) argument
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DPageConfig.java85 private IgnoredNames ignoredNames; field in class:PageConfig
890 if (ignoredNames == null) {
891 ignoredNames = getConfig().getIgnoredNames();
893 return ignoredNames;
1010 if (ignoredNames.match(path)) {
1014 return idx != -1 && ignoredNames.match(path.substring(0, idx));
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java90 private IgnoredNames ignoredNames; field in class:IndexDatabase
268 ignoredNames = config.getIgnoredNames();
651 if (ignoredNames.match(file)) {

Completed in 19 milliseconds