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

12

/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DHistory.java32 public class History { class
36 public History() { method in class:History
40 History(List<HistoryEntry> entries) { method in class:History
H A DHistoryCache.java63 History get(File file, Repository repository, boolean withFiles)
73 void store(History history, Repository repository)
H A DPerforceHistoryParser.java55 History parse(File file, Repository repos) throws HistoryException {
56 History history;
74 private History parseDirectory(File file) throws IOException {
86 public static History getRevisions(File file, String rev) throws IOException {
105 * @return History object with all the history entries
108 protected static History parseChanges(Reader fileHistory) throws IOException {
113 History history = new History();
148 protected static History parseFileLog(Reader fileLog) throws IOException {
191 History histor
[all...]
H A DAccuRevHistoryParser.java47 private History history;
58 History parse(File file, Repository repos) throws HistoryException {
78 history = new History(entries);
115 history = new History();
H A DClearCaseHistoryParser.java41 private History history;
44 History parse(File file, Repository repos) throws HistoryException {
119 history = new History();
130 History parse(String buffer) throws IOException {
H A DFileHistoryCache.java108 private static History readCache(File file) throws IOException {
115 return (History) obj;
121 private void storeFile(History history, File file) throws HistoryException {
173 public void store(History history, Repository repository)
205 History hist = new History();
221 public History get(File file, Repository repository, boolean withFiles)
233 final History history;
H A DRepository.java73 abstract History getHistory(File file) throws HistoryException;
94 History getHistory(File file, String sinceRevision)
108 History history = getHistory(file);
194 * @param hist History we want to assign tags to.
196 void assignTagsInHistory(History hist) throws HistoryException {
284 History history;
H A DBazaarHistoryParser.java55 History parse(File file, String sinceRevision) throws HistoryException {
77 return new History(entries);
185 History parse(String buffer) throws IOException {
188 return new History(entries);
H A DCVSHistoryParser.java48 private History history;
65 history = new History();
159 History parse(File file, Repository repos) throws HistoryException {
184 History parse(String buffer) throws IOException {
H A DGitHistoryParser.java51 private History history;
77 history = new History();
153 History parse(File file, Repository repos, String sinceRevision) throws HistoryException {
179 History parse(String buffer) throws IOException {
H A DHistoryReader.java40 HistoryReader(History history) {
H A DRCSHistoryParser.java72 History parse(File file, Repository repos) throws HistoryException {
80 private History parseFile(File file) throws IOException {
90 History history = new History();
H A DSCCSHistoryParser.java60 History parse(File file, Repository repos) throws HistoryException {
69 private History parseFile(File file) throws IOException {
95 History history = new History();
H A DDirectoryHistoryReader.java72 History history;
119 History hist = null;
140 history = new History(entries);
152 public History getHistory() {
205 private void readFromHistory(History hist, String rpath) {
H A DRazorHistoryParser.java42 * A History Parser for Razor
56 History parse(File file, Repository repos) throws HistoryException {
64 private History parseFile(File file, Repository repos)
72 parseProblem("History File Mapping is NON-EXISTENT (" + mappedFile.getAbsolutePath() + ")");
77 parseProblem("History File Mapping is a DIRECTORY (" + mappedFile.getAbsolutePath() + ")");
89 protected History parseContents(BufferedReader contents) throws IOException {
164 parseDebug("New History Event Seen : actionType = " + actionType + ", userName = " + userName + ", revision = " + revision + ", state = " + state + ", dateTime = " + dateTime);
195 History history = new History();
H A DRepoRepository.java97 History getHistory(File file) {
H A DSubversionHistoryParser.java146 History parse(File file, SubversionRepository repos, String sinceRevision)
169 return new History(entries);
195 History parse(String buffer) throws IOException {
198 return new History(handler.entries);
/opengrok-sun/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java173 History historyToStore = repos.getHistory(reposRoot);
183 History retrievedHistory = cache.get(makefile, repos, true);
207 History dirHistory = cache.get(reposRoot, repos, true);
220 History updatedHistory = cache.get(reposRoot, repos, true);
236 History clearedHistory = cache.get(reposRoot, repos, true);
237 assertTrue("History should be empty",
251 History history = repos.getHistory(reposRoot);
290 cache.store(new History(), hgRepos);
291 cache.store(new History(), svnRepos);
327 History histor
[all...]
H A DCVSHistoryParserTest.java66 History result = instance.parse("");
117 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 DBazaarHistoryParserTest.java73 History result = instance.parse("");
125 History result = instance.parse(output);
179 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);

Completed in 2925 milliseconds

12