Searched refs:HistoryEntry (Results 1 - 25 of 35) sorted by relevance

12

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistory.java35 private List<HistoryEntry> entries;
38 this(new ArrayList<HistoryEntry>());
41 History(List<HistoryEntry> entries) {
51 public void setHistoryEntries(List<HistoryEntry> entries) {
60 public List<HistoryEntry> getHistoryEntries() {
71 for (HistoryEntry entry : entries) {
H A DAccuRevHistoryParser.java68 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
69 entries.add(new HistoryEntry("", null, new Date(), "OpenGrok",
90 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
93 HistoryEntry entry = null;
128 entry = new HistoryEntry(null, null, date, user, "", false);
H A DHistoryReader.java37 private final List<HistoryEntry> entries;
59 for (HistoryEntry entry : entries) {
H A DClearCaseHistoryParser.java74 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
76 HistoryEntry entry = null;
89 entry = new HistoryEntry();
H A DPerforceHistoryParser.java119 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
126 HistoryEntry entry = new HistoryEntry();
155 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
157 HistoryEntry entry = null;
167 entry = new HistoryEntry();
H A DRepository.java124 List<HistoryEntry> partial = new ArrayList<HistoryEntry>();
125 for (HistoryEntry entry : history.getHistoryEntries()) {
143 * @param entries a list of {@code HistoryEntry} objects
148 void removeAndVerifyOldestChangeset(List<HistoryEntry> entries,
151 HistoryEntry entry =
H A DBazaarHistoryParser.java50 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD
100 HistoryEntry entry = null;
107 entry = new HistoryEntry();
H A DCVSHistoryParser.java62 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
67 HistoryEntry entry = null;
75 entry = new HistoryEntry();
H A DHistoryEntry.java40 public class HistoryEntry { class
53 /** Creates a new instance of HistoryEntry */
54 public HistoryEntry() { method in class:HistoryEntry
71 public HistoryEntry(String revision, String oldRevision, Date date, method in class:HistoryEntry
89 Logger log = Logger.getLogger(HistoryEntry.class.getName());
93 log.log(Level.FINE, "HistoryEntry : revision = {0}", revision);
94 log.log(Level.FINE, "HistoryEntry : old revision = {0}",
96 log.log(Level.FINE, "HistoryEntry : date = {0}", date);
97 log.log(Level.FINE, "HistoryEntry : author = {0}", author);
98 log.log(Level.FINE, "HistoryEntry
[all...]
H A DMonotoneHistoryParser.java53 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD
107 HistoryEntry entry = null;
118 entry = new HistoryEntry();
H A DSCCSHistoryParser.java83 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
85 HistoryEntry entry = new HistoryEntry();
H A DFileHistoryCache.java194 HashMap<String, List<HistoryEntry>> map =
195 new HashMap<String, List<HistoryEntry>>();
197 for (HistoryEntry e : history.getHistoryEntries()) {
199 List<HistoryEntry> list = map.get(s);
201 list = new ArrayList<HistoryEntry>();
209 for (Map.Entry<String, List<HistoryEntry>> e : map.entrySet()) {
210 for (HistoryEntry ent : e.getValue()) {
H A DMercurialHistoryParser.java54 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
112 entries = new ArrayList<HistoryEntry>();
114 HistoryEntry entry = null;
123 entry = new HistoryEntry();
H A DRCSHistoryParser.java93 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
105 private void traverse(Node n, List<HistoryEntry> history) {
118 HistoryEntry entry = new HistoryEntry();
H A DRazorHistoryParser.java101 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
102 HistoryEntry entry = null;
144 entry = new HistoryEntry();
188 private static void dumpEntry(HistoryEntry entry) {
H A DSubversionHistoryParser.java66 final List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
68 HistoryEntry entry;
83 entry = new HistoryEntry();
167 List<HistoryEntry> entries = handler.entries;
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DPerforceHistoryParserTest.java74 HistoryEntry e1 = result.getHistoryEntries().get(0);
80 HistoryEntry e2 = result.getHistoryEntries().get(1);
83 HistoryEntry e3 = result.getHistoryEntries().get(2);
86 HistoryEntry e4 = result.getHistoryEntries().get(3);
125 HistoryEntry e1 = result.getHistoryEntries().get(0);
131 HistoryEntry e2 = result.getHistoryEntries().get(1);
134 HistoryEntry e3 = result.getHistoryEntries().get(2);
137 HistoryEntry e4 = result.getHistoryEntries().get(3);
157 HistoryEntry entry, int year, int month, int day) {
H A DClearCaseHistoryParserTest.java113 HistoryEntry e1 = result.getHistoryEntries().get(0);
119 HistoryEntry e4 = result.getHistoryEntries().get(3);
177 HistoryEntry e1 = result.getHistoryEntries().get(0);
183 HistoryEntry e4 = result.getHistoryEntries().get(3);
H A DCVSHistoryParserTest.java114 HistoryEntry e0 = result.getHistoryEntries().get(0);
118 HistoryEntry e1 = result.getHistoryEntries().get(1);
122 HistoryEntry e2 = result.getHistoryEntries().get(2);
H A DMercurialRepositoryTest.java75 List<HistoryEntry> entries = hist.getHistoryEntries();
78 HistoryEntry e = entries.get(i);
95 List<HistoryEntry> entries = hist.getHistoryEntries();
98 HistoryEntry e = entries.get(i);
H A DJDBCHistoryCacheTest.java231 * Assert that two HistoryEntry objects are equal.
237 List<HistoryEntry> expected, List<HistoryEntry> actual) {
239 Iterator<HistoryEntry> actualIt = actual.iterator();
240 for (HistoryEntry expectedEntry : expected) {
247 * Assert that two lists of HistoryEntry objects are equal.
252 private static void assertSameEntry(HistoryEntry expected, HistoryEntry actual) {
287 List<HistoryEntry> entries = retrievedHistory.getHistoryEntries();
293 Iterator<HistoryEntry> entryI
[all...]
H A DGitHistoryParserTest.java129 HistoryEntry e0 = result.getHistoryEntries().get(0);
133 HistoryEntry e1 = result.getHistoryEntries().get(1);
137 HistoryEntry e2 = result.getHistoryEntries().get(2);
192 HistoryEntry e0 = result.getHistoryEntries().get(0);
199 HistoryEntry e1 = result.getHistoryEntries().get(1);
277 HistoryEntry e0 = result.getHistoryEntries().get(0);
284 HistoryEntry e1 = result.getHistoryEntries().get(1);
H A DSubversionHistoryParserTest.java137 HistoryEntry e1 = result.getHistoryEntries().get(0);
143 HistoryEntry e2 = result.getHistoryEntries().get(1);
149 HistoryEntry e3 = result.getHistoryEntries().get(2);
H A DBazaarHistoryParserTest.java127 HistoryEntry e1 = result.getHistoryEntries().get(0);
132 HistoryEntry e2 = result.getHistoryEntries().get(1);
137 HistoryEntry e3 = result.getHistoryEntries().get(2);
181 HistoryEntry e1 = result.getHistoryEntries().get(0);
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java38 import org.opensolaris.opengrok.history.HistoryEntry;
172 Iterator<HistoryEntry> it = in.getHistoryEntries().iterator();
174 HistoryEntry he = null;
175 HistoryEntry nhe = null; // next HE, the lookahead revision

Completed in 26 milliseconds

12