Searched refs:getHistory (Results 1 - 25 of 27) sorted by relevance

12

/opengrok/src/org/opensolaris/opengrok/history/
H A DRepository.java66 * Check if the repository supports {@code getHistory()} requests for whole
80 abstract History getHistory(File file) throws HistoryException; method in class:Repository
101 History getHistory(File file, String sinceRevision) method in class:Repository
114 History history = getHistory(file);
274 * {@code getHistory()} is used to fetch the history for the entire
306 history = getHistory(directory, sinceRevision);
324 history = getHistory(directory);
H A DHistoryGuru.java144 hist = repo.getHistory(file);
184 History history = getHistory(file, false);
195 public History getHistory(File file) throws HistoryException { method in class:HistoryGuru
196 return getHistory(file, true, false);
199 public History getHistory(File file, boolean withFiles) throws HistoryException { method in class:HistoryGuru
200 return getHistory(file, true, false);
211 return getHistory(file, true, true);
225 public History getHistory(File file, boolean withFiles, boolean ui) method in class:HistoryGuru
242 history = repo.getHistory(file);
H A DRepoRepository.java104 History getHistory(File file) { method in class:RepoRepository
H A DMonotoneRepository.java256 History getHistory(File file) throws HistoryException { method in class:MonotoneRepository
257 return getHistory(file, null);
261 History getHistory(File file, String sinceRevision) method in class:MonotoneRepository
H A DBazaarRepository.java272 History getHistory(File file, String sinceRevision) throws HistoryException { method in class:BazaarRepository
284 History getHistory(File file) throws HistoryException { method in class:BazaarRepository
285 return getHistory(file, null);
H A DSSCMRepository.java157 History getHistory(File file) throws HistoryException { method in class:SSCMRepository
158 return getHistory(file, null);
162 History getHistory(File file, String sinceRevision) method in class:SSCMRepository
H A DSubversionRepository.java292 History getHistory(File file) throws HistoryException { method in class:SubversionRepository
293 return getHistory(file, null);
297 History getHistory(File file, String sinceRevision) method in class:SubversionRepository
H A DRCSRepository.java154 History getHistory(File file) throws HistoryException { method in class:RCSRepository
H A DMercurialRepository.java438 History hist = HistoryGuru.getInstance().getHistory(file, false);
569 History getHistory(File file) throws HistoryException { method in class:MercurialRepository
570 return getHistory(file, null);
574 History getHistory(File file, String sinceRevision) method in class:MercurialRepository
H A DDirectoryHistoryReader.java147 hist = HistoryGuru.getInstance().getHistory(f);
183 public History getHistory() { method in class:DirectoryHistoryReader
H A DGitRepository.java474 History getHistory(File file) throws HistoryException { method in class:GitRepository
475 return getHistory(file, null);
479 History getHistory(File file, String sinceRevision) method in class:GitRepository
H A DAccuRevRepository.java347 History getHistory(File file) throws HistoryException { method in class:AccuRevRepository
H A DRazorRepository.java339 History getHistory(File file) throws HistoryException { method in class:RazorRepository
H A DSCCSRepository.java260 History getHistory(File file) throws HistoryException { method in class:SCCSRepository
H A DPerforceRepository.java216 History getHistory(File file) throws HistoryException { method in class:PerforceRepository
H A DFileHistoryCache.java103 hist = repository.getHistory(test);
499 history = repository.getHistory(file);
H A DClearCaseRepository.java408 History getHistory(File file) throws HistoryException { method in class:ClearCaseRepository
H A DCVSRepository.java269 History getHistory(File file) throws HistoryException { method in class:CVSRepository
/opengrok/test/org/opensolaris/opengrok/history/
H A DHistoryGuruTest.java113 : instance.getHistory(f).getHistoryEntries()) {
130 assertNotNull(instance.getHistory(f));
H A DMercurialRepositoryTest.java58 * they are supposed to be returned from getHistory(), that is latest
105 History hist = mr.getHistory(root);
131 History hist = mr.getHistory(root, REVISIONS[REVISIONS.length - 1]);
188 History hist = mr.getHistory(root);
208 hist = mr.getHistory(root, "8:6a8c423f5624");
291 * Test that {@code getHistory()} throws an exception if the revision
312 mr.getHistory(root, constructedRevision);
313 fail("getHistory() should have failed");
H A DJDBCHistoryCacheTest.java191 History historyToStore = repos.getHistory(reposRoot);
293 History history = repos.getHistory(reposRoot);
338 cache.store(hgRepos.getHistory(hgRoot), hgRepos);
343 cache.store(svnRepos.getHistory(svnRoot), svnRepos);
369 History history = repos.getHistory(reposRoot);
492 History historyToStore = repos.getHistory(reposRoot);
H A DFileHistoryCacheTest.java135 History historyToStore = repo.getHistory(reposRoot);
166 History historyToStore = repo.getHistory(reposRoot);
212 History freshHistory = repo.getHistory(reposRoot);
245 History historyToStore = repo.getHistory(reposRoot);
292 historyToStore = repo.getHistory(reposRoot);
356 History historyToStore = repo.getHistory(reposRoot);
H A DPerforceRepositoryTest.java94 History history = instance.getHistory(f);
/opengrok/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java84 return getHistoryContext(HistoryGuru.getInstance().getHistory(f),
115 History hist = HistoryGuru.getInstance().getHistory(src);
/opengrok/test/org/opensolaris/opengrok/search/
H A DSearchEngineTest.java129 assertNull(instance.getHistory());
132 assertEquals(hist, instance.getHistory());

Completed in 40 milliseconds

12