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

/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DPerforceRepositoryTest.java44 private static List<File> files; field in class:PerforceRepositoryTest
56 files = new ArrayList<File>();
57 FileUtilities.getAllFiles(root, files, false);
86 for (File f : files) {
H A DHistoryGuruTest.java50 private static List<File> files = new ArrayList<File>(); field in class:HistoryGuruTest
57 FileUtilities.getAllFiles(new File(repository.getSourceRoot()), files, true);
106 for (File f : files) {
125 for (File f : files) {
140 for (File f : files) {
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java116 * Get all files of the given directory and all its descendants obeying
119 * @param files where to store files found
120 * @param directories if {@code true} add directories to <var>files</var>
123 public static void getAllFiles(File root, List<File> files, boolean directories) { argument
124 assertNotNull(files);
126 files.add(root);
133 getAllFiles(f, files, directories);
135 files.add(f);
/opengrok-jel/test/org/opensolaris/opengrok/index/
H A DIndexerTest.java140 false, // don't list files
142 null, // subFiles - not needed since we don't list files
190 List<String> files = new ArrayList<String>(); field in class:IndexerTest.MyIndexChangeListener
198 files.add(path);
243 assertEquals(2, listener.files.size());
250 assertEquals(1, listener.files.size());
261 List<File> files = new ArrayList<File>();
262 FileUtilities.getAllFiles(new File(repository.getSourceRoot()), files, false);
263 for (File f : files) {
298 assertEquals(1, listener.files
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistoryEntry.java50 private SortedSet<String> files; field in class:HistoryEntry
56 files = new TreeSet<String>();
80 this.files = new TreeSet<String>();
111 for (String file : files) {
112 log.log(Level.FINE, "HistoryEntry : files {0} {1}", new Object[]{separator, file});
192 files.add(file);
196 return files;
199 public void setFiles(SortedSet<String> files) { argument
200 this.files = files;
[all...]
H A DHistoryGuru.java189 * @return The history for the given path including a list of files touched
205 * a list of files touched by each changeset (the file list may be
224 * a list of files touched by each changeset (the file list may be
287 * Does this directory contain files with source control information?
292 * @return {@code true} if the files in this directory have associated
325 * Get the last modified times for all files and subdirectories excluding
330 * @param directory the directory whose files to check (canonical path incl.
373 private void addRepositories(File[] files, Collection<RepositoryInfo> repos, argument
376 addRepositories(files, repos, ignoredNames, true, depth);
381 * @param files lis
388 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, boolean recursiveSearch, int depth) argument
[all...]
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 15 milliseconds