Searched defs:files (Results 1 - 9 of 9) sorted by relevance

/opengrok/test/org/opensolaris/opengrok/history/
H A DPerforceRepositoryTest.java53 private static List<File> files; field in class:PerforceRepositoryTest
65 files = new ArrayList<>();
66 FileUtilities.getAllFiles(root, files, false);
92 for (File f : files) {
H A DHistoryGuruTest.java52 private static final List<File> files = new ArrayList<>(); field in class:HistoryGuruTest
63 files, true);
110 for (File f : files) {
128 for (File f : files) {
139 for (File f : files) {
/opengrok/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java87 public static void getAllFiles(File root, List<File> files, boolean directories) { argument
88 assertNotNull(files);
90 files.add(root);
98 getAllFiles(f, files, directories);
100 files.add(f);
/opengrok/src/org/opensolaris/opengrok/web/
H A DDirectoryListing.java98 * @param files basenames of potential children of the directory to list.
100 * @return a possible empty list of README files included in the written
106 * @throws NullPointerException if a parameter except <var>files</var>
110 String path, List<String> files)
150 if (files != null) {
151 for (String file : files) {
109 listTo(String contextPath, File dir, Writer out, String path, List<String> files) argument
/opengrok/test/org/opensolaris/opengrok/index/
H A DIndexerTest.java143 false, // don't list files
145 null, // subFiles - not needed since we don't list files
194 List<String> files = new ArrayList<>(); field in class:IndexerTest.MyIndexChangeListener
203 files.add(path);
216 files.remove(path);
221 this.files = new ArrayList<>();
250 assertEquals(2, listener.files.size());
257 assertEquals(1, listener.files.size());
266 List<File> files = new ArrayList<>();
267 FileUtilities.getAllFiles(new File(repository.getSourceRoot()), files, fals
[all...]
/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryEntry.java55 private SortedSet<String> files; field in class:HistoryEntry
61 files = new TreeSet<String>();
73 this.files = that.files;
85 this.files = new TreeSet<String>();
115 for (String file : files) {
116 LOGGER.log(Level.FINE, "HistoryEntry : files {0} {1}",
181 files.add(file);
185 return files;
188 public void setFiles(SortedSet<String> files) { argument
[all...]
H A DHistoryGuru.java219 * list of files touched by each changeset (the file list may be skipped if
268 * Does this directory contain files with source control information?
271 * @return true if the files in this directory have associated revision
308 * Get the last modified times for all files and subdirectories in the
311 * @param directory the directory whose files to check
312 * @return a map from file names to modification times for the files that
325 private void addRepositories(File[] files, Collection<RepositoryInfo> repos, argument
327 addRepositories(files, repos, ignoredNames, true, depth);
333 * @param files list of files t
340 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, boolean recursiveSearch, int depth) argument
[all...]
H A DJDBCHistoryCache.java547 * Statement that gets the history for all files matching a pattern in the
556 * Statement that retrieves all the files touched by a given changeset.
625 // Fetch history for all files under this directory.
652 // Fill the list of files touched by the changeset, if
748 final Map<String, Integer> files;
807 files = filesNf;
845 // ignore non-existent files
860 int fileId = files.get(fullPath);
894 * Special handling for certain files - this is mainly for files whic
1357 doRenamedHistory(final Repository repository, File file, Map<String, Integer> files, String repo_path) argument
[all...]
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 19 milliseconds