Searched refs:entries (Results 1 - 21 of 21) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistory.java35 private List<HistoryEntry> entries; field in class:History
41 History(List<HistoryEntry> entries) { argument
42 this.entries = entries;
46 * Set the list of log entries for the file. The first entry is the most
49 * @param entries The entries to add to the list
51 public void setHistoryEntries(List<HistoryEntry> entries) { argument
52 this.entries = entries;
[all...]
H A DHistoryReader.java33 * Class for reading history entries in a way suitable for indexing by Lucene.
37 private final List<HistoryEntry> entries; field in class:HistoryReader
41 entries = history.getHistoryEntries();
59 for (HistoryEntry entry : entries) {
H A DAccuRevHistoryParser.java68 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
69 entries.add(new HistoryEntry("", null, new Date(), "OpenGrok",
71 history = new History(entries);
90 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
136 entries.add(entry);
141 history.setHistoryEntries(entries);
H A DBazaarHistoryParser.java50 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD field in class:BazaarHistoryParser
77 repository.removeAndVerifyOldestChangeset(entries, sinceRevision);
80 return new History(entries);
105 entries.add(entry);
188 entries.add(entry);
202 return new History(entries);
H A DPerforceHistoryParser.java110 * @return History object with all the history entries
119 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
138 entries.add(entry);
142 history.setHistoryEntries(entries);
150 * @return A history object containing history entries
155 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
163 entries.add(entry);
183 entries.add(entry);
194 entries.add(entry);
198 history.setHistoryEntries(entries);
[all...]
H A DSubversionHistoryParser.java66 final List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); field in class:SubversionHistoryParser.Handler
119 entries.add(entry);
167 List<HistoryEntry> entries = handler.entries;
172 repos.removeAndVerifyOldestChangeset(entries, sinceRevision);
175 return new History(entries);
208 return new History(handler.entries);
H A DClearCaseHistoryParser.java74 List<HistoryEntry> entries = new ArrayList<HistoryEntry>();
119 entries.add(entry);
122 history.setHistoryEntries(entries);
H A DCVSHistoryParser.java62 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
73 entries.add(entry);
118 entries.add(entry);
121 history.setHistoryEntries(entries);
H A DMonotoneHistoryParser.java53 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD field in class:MonotoneHistoryParser
87 return new History(entries);
116 entries.add(entry);
195 entries.add(entry);
H A DRepository.java143 * @param entries a list of {@code HistoryEntry} objects
148 void removeAndVerifyOldestChangeset(List<HistoryEntry> entries, argument
152 entries.isEmpty() ? null : entries.remove(entries.size() - 1);
H A DMercurialHistoryParser.java54 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); field in class:MercurialHistoryParser
93 repository.removeAndVerifyOldestChangeset(entries, changeset);
96 return new History(entries);
112 entries = new ArrayList<HistoryEntry>();
124 entries.add(entry);
H A DSCCSHistoryParser.java83 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
91 entries.add(entry);
97 history.setHistoryEntries(entries);
H A DRazorHistoryParser.java101 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
111 entries.add(entry);
179 entries.add(entry);
184 history.setHistoryEntries(entries);
H A DGitHistoryParser.java80 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
96 entries.add(entry);
190 entries.add(entry);
193 history.setHistoryEntries(entries);
H A DRCSHistoryParser.java93 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
94 traverse(n, entries);
97 history.setHistoryEntries(entries);
H A DDirectoryHistoryReader.java154 ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
156 entries.add(currentEntry);
159 history = new History(entries);
H A DJDBCHistoryCache.java546 final ArrayList<HistoryEntry> entries = new ArrayList<HistoryEntry>();
580 entries.add(entry);
607 history.setHistoryEntries(entries);
703 // getHistoryEntries() returns the entries in reverse chronological
709 List<HistoryEntry> entries = history.getHistoryEntries();
710 ListIterator<HistoryEntry> it = entries.listIterator(entries.size());
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DMercurialRepositoryTest.java75 List<HistoryEntry> entries = hist.getHistoryEntries();
76 assertEquals(REVISIONS.length, entries.size());
77 for (int i = 0; i < entries.size(); i++) {
78 HistoryEntry e = entries.get(i);
95 List<HistoryEntry> entries = hist.getHistoryEntries();
96 assertEquals(REVISIONS.length - 1, entries.size());
97 for (int i = 0; i < entries.size(); i++) {
98 HistoryEntry e = entries.get(i);
H A DJDBCHistoryCacheTest.java234 * @throws AssertFailure if the two entries don't match
243 assertFalse("More entries than expected", actualIt.hasNext());
248 * @param expected the expected list of entries
249 * @param actual the actual list of entries
287 List<HistoryEntry> entries = retrievedHistory.getHistoryEntries();
289 assertEquals("Unexpected number of entries", 2, entries.size());
293 Iterator<HistoryEntry> entryIt = entries.iterator();
389 List<HistoryEntry> entries = history.getHistoryEntries();
390 HistoryEntry oldestEntry = entries
[all...]
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java59 Enumeration<? extends ZipEntry> e = zipfile.entries();
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 29 milliseconds