Searched defs:ignoredNames (Results 1 - 5 of 5) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryGuru.java326 IgnoredNames ignoredNames, int depth) {
327 addRepositories(files, repos, ignoredNames, true, depth);
335 * @param ignoredNames what files to ignore
341 IgnoredNames ignoredNames, boolean recursiveSearch, int depth) {
364 if (file.isDirectory() && !ignoredNames.ignore(file)) {
371 addRepositories(subFiles, repos, ignoredNames, depth + 1);
395 addRepositories(subFiles, repos, ignoredNames,
325 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, int depth) argument
340 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, boolean recursiveSearch, int depth) argument
/opengrok/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java97 private IgnoredNames ignoredNames; field in class:IndexDatabase
273 ignoredNames = env.getIgnoredNames();
684 if (ignoredNames.ignore(file)) {
/opengrok/src/org/opensolaris/opengrok/web/
H A DPageConfig.java97 private IgnoredNames ignoredNames; field in class:PageConfig
907 if (ignoredNames == null) {
908 ignoredNames = getEnv().getIgnoredNames();
910 return ignoredNames;
1032 return getResourcePath().equals("/") || ignoredNames.ignore(getPath())
1033 || ignoredNames.ignore(resourceFile.getParentFile())
1034 || ignoredNames.ignore(resourceFile);
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java111 private IgnoredNames ignoredNames; field in class:Configuration
592 public void setIgnoredNames(IgnoredNames ignoredNames) { argument
593 this.ignoredNames = ignoredNames;
597 return ignoredNames;
H A DRuntimeEnvironment.java777 public void setIgnoredNames(IgnoredNames ignoredNames) { argument
778 threadConfig.get().setIgnoredNames(ignoredNames);

Completed in 20 milliseconds