Searched refs:files (Results 1 - 14 of 14) sorted by relevance

/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 DMonotoneHistoryParser.java173 String files[] = s.split(" ");
174 for (String f : files) {
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...]
H A DJDBCHistoryCache.java508 * Statement that gets the history for all files matching a pattern in the
516 /** Statement that retrieves all the files touched by a given changeset. */
555 // Fetch history for all files under this directory.
582 // Fill the list of files touched by the changeset, if
653 Map<String, Integer> files = null;
671 if (directories == null || files == null) {
677 files = fls;
740 int fileId = files.get(fullPath);
983 * identifiers in the database. The directories and files that are not
1027 // the files adde
[all...]
/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 DHistoryEntryTest.java232 TreeSet<String> files = new TreeSet<String>();
233 files.add("file1.file");
234 files.add("file2.file");
235 instance.setFiles(files);
277 TreeSet<String> files = new TreeSet<String>();
278 files.add("file1.file");
279 files.add("file2.file");
280 instance.setFiles(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) {
H A DBazaarHistoryParserTest.java152 String[] files = {
171 for (String file : files) {
184 assertEquals(new HashSet<String>(Arrays.asList(files)), e1.getFiles());
/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/web/
H A DPageConfig.java181 // does not need to fetch undiffable binary files ...
207 data.errorMsg = "Diffs between files of different type ("
303 // (2) diff could always involve virtual files - let it handle by itself
322 // files need to have a revision param and would be handled in
371 String[] files = null;
373 files = getResourceFile().list();
375 if (files == null) {
378 Arrays.sort(files, String.CASE_INSENSITIVE_ORDER);
380 Collections.unmodifiableList(Arrays.asList(files));
1074 * Find the files wit
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java371 logger.log(Level.INFO, "Counting files in ''{0}'' ...", dir);
374 logger.log(Level.INFO, "Need to process {0} files for ''{1}''",
671 // below will only let go files and directories, anything else is
683 // always accept directories so that their files can be examined
688 // versioned files should always be accepted
786 * @param count_only if true will just traverse the source root and count files
788 * @param est_total estimate total files to process
789 * @return number of files indexed
804 File[] files = dir.listFiles();
805 if (files
[all...]
H A DIndexer.java340 System.err.println(" will use the C analyzer for all files ending with .foo");
342 System.err.println(" will disable the c-analyzer for for all files ending with .c");
560 * @param listFiles If {@code true}, print a list of all files of
565 * files when <var>listFiles</var> or <var>createDict</var> is set to
659 File files[] = cfg.getSourceRootFile().listFiles();
672 for (File file : files) {
751 * @param subFiles Use the giben repo files to determine the projects,
/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 26 milliseconds