Searched refs:fileName (Results 1 - 9 of 9) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DFilter.java132 String fileName = path.getName();
133 if (filenames.contains(fileName)) {
137 Matcher m = p.matcher(fileName);
149 int start = fileName.indexOf(".");
151 String fileExtension = fileName.substring(start);
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DBazaarRepositoryTest.java80 String fileName = "something.ext";
81 Annotation result = instance.parseAnnotation(input, fileName);
92 assertEquals(fileName, result.getFilename());
H A DCVSRepositoryTest.java97 String fileName = "something.ext";
98 Annotation result = instance.parseAnnotation(input, fileName);
109 assertEquals(fileName, result.getFilename());
H A DGitRepositoryTest.java73 String fileName = "something.ext";
77 Annotation result = (Annotation) method.invoke(instance, input, fileName);
88 assertEquals(fileName, result.getFilename());
H A DHistoryEntryTest.java204 String fileName = "test.file";
208 instance.addFile(fileName);
209 assertTrue(instance.getFiles().contains(fileName));
219 String fileName = "test.file";
220 instance.addFile(fileName);
221 assertTrue(instance.getFiles().contains(fileName));
/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DCtagsTest.java80 private static Definitions getDefs(String fileName) throws Exception { argument
82 + fileName.replace('/', File.separatorChar);
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DBazaarRepository.java186 protected Annotation parseAnnotation(Reader input, String fileName) argument
190 Annotation ret = new Annotation(fileName);
H A DCVSRepository.java293 * @param fileName the name of the associated file.
298 protected Annotation parseAnnotation(Reader input, String fileName) argument
302 Annotation ret = new Annotation(fileName);
H A DGitRepository.java89 * @param fileName name of the file to retrieve the path
93 private String getCorrectPath(String fileName, String revision) argument
104 cmd.add(fileName);
455 * @param fileName name of the file associated with the given input (used
460 private static Annotation parseAnnotation(Reader input, String fileName) argument
464 Annotation ret = new Annotation(fileName);
478 new Object[] { String.valueOf(lineno), line, fileName });

Completed in 14 milliseconds