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

/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 DMonotoneHistoryParser.java160 String files[] = s.split(" ");
161 for (String f : files) {
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/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) {
H A DHistoryEntryTest.java233 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 DBazaarHistoryParserTest.java156 String[] files = {
175 for (String file : files) {
188 assertEquals(new HashSet(Arrays.asList(files)), e1.getFiles());
/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/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/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
H A DPageConfig.java382 String[] files = null;
384 files = getResourceFile().list();
386 if (files == null) {
389 Arrays.sort(files, String.CASE_INSENSITIVE_ORDER);
391 = Collections.unmodifiableList(Arrays.asList(files));
1094 * Find the files with the given names in the {@link #getPath()} directory
/opengrok/src/org/opensolaris/opengrok/authorization/
H A DAuthorizationFramework.java178 * @param suffix suffix for the files
182 File[] files = directory.listFiles(new FilenameFilter() {
188 if (files == null) {
191 return Arrays.asList(files);
195 * @param suffix suffix for the files
196 * @return recursively traversed list of files with given suffix
208 List<File> files = Arrays.asList(fs);
209 for (File f : files) {
/opengrok/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java390 LOGGER.log(Level.INFO, "Counting files in {0} ...", dir);
393 "Need to process: {0} files for {1}",
703 //below will only let go files and directories, anything else is considered special and is not added
716 // always accept directories so that their files can be examined
721 // versioned files should always be accepted
818 * files
820 * @param est_total estimate total files to process
835 File[] files = dir.listFiles();
836 if (files == null) {
841 Arrays.sort(files, fileComparato
[all...]
H A DIndexer.java88 System.err.println(" will use the C analyzer for all files ending with .foo");
90 System.err.println(" will use the C analyzer for all files starting with bar.");
92 System.err.println(" will disable the c-analyzer for for all files ending with .c");
556 * (otherwise the index files will end up in index data root
713 File files[] = env.getSourceRootFile().listFiles();
726 for (File file : files) {
800 * by passing source code files through Exuberant ctags, generating xrefs
801 * and storing data from the source files in the index (along with history,
/opengrok/
H A Dmvnw.cmd33 @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
/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 54 milliseconds