Searched refs:rcsFile (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRCSRepository.java72 File rcsFile = getRCSFile(file);
73 return new RCSget(rcsFile.getPath(), rev);
95 File rcsFile = getRCSFile(file);
96 return rcsFile == null ? null : annotate(file, revision, rcsFile);
99 static Annotation annotate(File file, String revision, File rcsFile) argument
102 Archive archive = new Archive(rcsFile.getPath());
156 File rcsFile = new File(dir, baseName + ",v");
157 return rcsFile.exists() ? rcsFile
[all...]
H A DRazorRepository.java249 File rcsFile = getRazorArchiveRCSFileFor(new File(parent, basename));
250 if (rcsFile != null && rcsFile.exists()) {
251 String rcsPath = rcsFile.getPath();
275 File rcsFile = getRazorArchiveRCSFileFor(file);
276 if (rcsFile != null && rcsFile.exists()) {
277 return RCSRepository.annotate(file, revision, rcsFile);
H A DRCSHistoryParser.java68 File rcsFile = new File(dir, filename);
69 if (!rcsFile.exists()) {
72 rcsFile = atticFile;
75 return rcsFile;
134 File rcsFile = new File(rcsDir, name + ",v");
135 if (rcsFile.exists()) {
136 return rcsFile;

Completed in 9 milliseconds