/opengrok-sun/src/org/opensolaris/opengrok/history/ |
H A D | HistoryEntry.java | 52 private SortedSet<String> files; field in class:HistoryEntry 58 files = new TreeSet<String>(); 70 this.files = that.files; 82 this.files = new TreeSet<String>(); 110 for (String file : files) { 111 log.log(Level.FINE, "HistoryEntry : files {0} {1}", new Object[]{separator, file}); 175 files.add(file); 179 return files; 182 public void setFiles(SortedSet<String> files) { argument [all...] |
H A D | MonotoneHistoryParser.java | 156 String files[] = s.split(" "); 157 for (String f : files) {
|
H A D | HistoryGuru.java | 195 * a list of files touched by each changeset (the file list may be skipped 240 * Does this directory contain files with source control information? 242 * @return true if the files in this directory have associated revision 274 * Get the last modified times for all files and subdirectories in the 277 * @param directory the directory whose files to check 278 * @return a map from file names to modification times for the files that 290 private void addRepositories(File[] files, Collection<RepositoryInfo> repos, argument 293 addRepositories(files, repos, ignoredNames, true, depth); 298 * @param files list of files t 305 addRepositories(File[] files, Collection<RepositoryInfo> repos, IgnoredNames ignoredNames, boolean recursiveSearch, int depth) argument [all...] |
H A D | JDBCHistoryCache.java | 525 * Statement that gets the history for all files matching a pattern in the 533 /** Statement that retrieves all the files touched by a given changeset. */ 567 // Fetch history for all files under this directory. 594 // Fill the list of files touched by the changeset, if 660 Map<String, Integer> files = null; 683 if (directories == null || files == null) { 689 files = fls; 756 int fileId = files.get(fullPath); 1033 * identifiers in the database. The directories and files that are not 1076 // the files adde [all...] |
/opengrok-sun/test/org/opensolaris/opengrok/history/ |
H A D | PerforceRepositoryTest.java | 44 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 D | HistoryEntryTest.java | 233 TreeSet<String> files = new TreeSet<String>(); 234 files.add("file1.file"); 235 files.add("file2.file"); 236 instance.setFiles(files); 278 TreeSet<String> files = new TreeSet<String>(); 279 files.add("file1.file"); 280 files.add("file2.file"); 281 instance.setFiles(files);
|
H A D | HistoryGuruTest.java | 49 private static List<File> files = new ArrayList<File>(); field in class:HistoryGuruTest 58 FileUtilities.getAllFiles(new File(repository.getSourceRoot()), files, true); 109 for (File f : files) { 127 for (File f : files) { 138 for (File f : files) {
|
H A D | BazaarHistoryParserTest.java | 156 String[] files = { 175 for (String file : files) { 188 assertEquals(new HashSet(Arrays.asList(files)), e1.getFiles());
|
/opengrok-sun/test/org/opensolaris/opengrok/util/ |
H A D | FileUtilities.java | 87 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-sun/test/org/opensolaris/opengrok/index/ |
H A D | IndexerTest.java | 135 false, // don't list files 137 null, // subFiles - not needed since we don't list files 184 List<String> files = new ArrayList<String>(); field in class:IndexerTest.MyIndexChangeListener 192 files.add(path); 233 assertEquals(2, listener.files.size()); 240 assertEquals(1, listener.files.size()); 249 List<File> files = new ArrayList<File>(); 250 FileUtilities.getAllFiles(new File(repository.getSourceRoot()), files, false); 251 for (File f : files) { 283 assertEquals(1, listener.files [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/web/ |
H A D | DirectoryListing.java | 97 * @param files basenames of potential children of the directory to list. 99 * @return a possible empty list of README files included in the written 103 * @throws NullPointerException if a parameter except <var>files</var> 106 public List<String> listTo(File dir, Writer out, String path, List<String> files) argument 140 if (files != null) { 141 for (String file : files) {
|
H A D | PageConfig.java | 334 String[] files = null; 336 files = getResourceFile().list(); 338 if (files == null) { 341 Arrays.sort(files, String.CASE_INSENSITIVE_ORDER); 343 Collections.unmodifiableList(Arrays.asList(files)); 1037 * Find the files with the given names in the {@link #getPath()} directory
|
/opengrok-sun/src/org/opensolaris/opengrok/index/ |
H A D | IndexDatabase.java | 380 log.log(Level.INFO, "Counting files in {0} ...", dir); 383 log.log(Level.INFO, "Need to process: {0} files for {1}", new Object[]{file_cnt, dir}); 699 //below will only let go files and directories, anything else is considered special and is not added 710 // always accept directories so that their files can be examined 715 // versioned files should always be accepted 812 * files 814 * @param est_total estimate total files to process 827 File[] files = dir.listFiles(); 828 if (files == null) { 832 Arrays.sort(files, ne [all...] |
H A D | Indexer.java | 335 System.err.println(" will use the C analyzer for all files ending with .foo"); 337 System.err.println(" will disable the c-analyzer for for all files ending with .c"); 606 File files[] = env.getSourceRootFile().listFiles(); 619 for (File file : files) {
|
/opengrok-sun/lib/ |
H A D | bcel-5.2.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ... |