Searched refs:History (Results 1 - 25 of 45) sorted by relevance

12

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistory.java33 public class History { class
37 public History() { method in class:History
41 History(List<HistoryEntry> entries) { method in class:History
H A DHistoryCache.java68 History get(File path, Repository repository, boolean withFiles, Boolean isDir)
78 void store(History history, Repository repository)
H A DPerforceHistoryParser.java55 static History parse(File file, Repository repos) throws HistoryException {
56 History history;
74 private static History parseDirectory(File file) throws IOException {
86 static History getRevisions(File file, String rev) throws IOException {
110 * @return History object with all the history entries
113 protected static History parseChanges(Reader fileHistory) throws IOException {
118 History history = new History();
153 protected static History parseFileLog(Reader fileLog) throws IOException {
197 History histor
[all...]
H A DAccuRevHistoryParser.java49 private History history;
59 History parse(File file, Repository repos) {
71 history = new History(entries);
94 history = new History();
H A DClearCaseHistoryParser.java42 private History history;
45 History parse(File file, Repository repos) throws HistoryException {
121 history = new History();
132 History parse(String buffer) throws IOException {
H A DBazaarHistoryParser.java58 History parse(File file, String sinceRevision) throws HistoryException {
80 return new History(entries);
199 History parse(String buffer) throws IOException {
202 return new History(entries);
H A DCVSHistoryParser.java49 private History history;
66 history = new History();
131 History parse(File file, Repository repos) throws HistoryException {
156 History parse(String buffer) throws IOException {
H A DHistoryReader.java40 HistoryReader(History history) {
H A DRepository.java83 public abstract History getHistory(File file) throws HistoryException;
106 public History getHistory(File file, String sinceRevision)
118 History history = getHistory(file);
231 History history;
H A DSCCSHistoryParser.java61 History parse(File file, Repository repos) throws HistoryException {
70 private History parseFile(File file) throws IOException {
96 History history = new History();
H A DFileHistoryCache.java115 private static History readCache(File file) throws IOException {
121 return (History) obj;
131 private void storeFile(History history, File file) throws HistoryException {
187 public void store(History history, Repository repository)
213 History hist = new History();
223 public History get(File file, Repository repository, boolean withFiles,
237 final History history;
H A DRazorHistoryParser.java43 * A History Parser for Razor
61 History parse(File file, Repository repos) throws HistoryException {
69 private History parseFile(File file, Repository repos)
78 logger.warning("History File Mapping is NON-EXISTENT ("
84 logger.warning("History File Mapping is a DIRECTORY ("
97 protected History parseContents(BufferedReader contents) throws IOException {
150 logger.log(Level.FINE, "New History Event Seen: actionType "
183 History history = new History();
H A DRCSHistoryParser.java78 History parse(File file) throws HistoryException {
86 private History parseFile(File file) throws IOException {
96 History history = new History();
H A DSubversionHistoryParser.java152 History parse(File file, SubversionRepository repos, String sinceRevision)
175 return new History(entries);
205 History parse(String buffer) throws IOException {
208 return new History(handler.entries);
H A DGitHistoryParser.java55 private History history;
83 history = new History();
203 History parse(File file, Repository repos, String sinceRevision)
232 History parse(String buffer) throws IOException {
H A DDirectoryHistoryReader.java75 History history;
136 History hist = null;
159 history = new History(entries);
170 public History getHistory() {
223 private void readFromHistory(History hist, String rpath) {
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DCVSHistoryParserTest.java67 History result = instance.parse("");
111 History result = instance.parse(output);
H A DClearCaseHistoryParserTest.java109 History result = instance.parse(output);
173 History result = instance.parse(output);
H A DRazorHistoryParserTest.java73 History result = instance.parseContents(new BufferedReader(new StringReader(output)));
111 History result = instance.parseContents(new BufferedReader(new StringReader(output)));
H A DJDBCHistoryCacheTest.java269 History historyToStore = repos.getHistory(reposRoot);
279 History retrievedHistory = cache.get(makefile, repos, true, null);
280 History retrievedHistory2 = cache.get(makefile, repos, true, Boolean.FALSE);
309 History dirHistory = cache.get(reposRoot, repos, true, null);
327 History updatedHistory = cache.get(reposRoot, repos, true, null);
369 History clearedHistory = cache.get(reposRoot, repos, true, null);
370 assertTrue("History should be empty",
385 History history = repos.getHistory(reposRoot);
425 cache.store(new History(), hgRepos);
426 cache.store(new History(), svnRepo
[all...]
H A DBazaarHistoryParserTest.java67 History result = instance.parse("");
121 History result = instance.parse(output);
175 History result = instance.parse(output.toString());
H A DMercurialRepositoryTest.java74 History hist = mr.getHistory(root);
94 History hist = mr.getHistory(root, REVISIONS[REVISIONS.length - 1]);
H A DPerforceHistoryParserTest.java69 History result = PerforceHistoryParser.parseChanges(new StringReader(output));
120 History result = PerforceHistoryParser.parseFileLog(new StringReader(output));
H A DSubversionHistoryParserTest.java67 History result = instance.parse("");
132 History result = instance.parse(output);
H A DGitHistoryParserTest.java71 History result = instance.parse("");
126 History result = instance.parse(output);
189 History result = instance.parse(output);
274 History result = instance.parse(output);

Completed in 26 milliseconds

12