Searched defs:entries (Results 1 - 10 of 10) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
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 DBazaarHistoryParser.java51 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD field in class:BazaarHistoryParser
78 repository.removeAndVerifyOldestChangeset(entries, sinceRevision);
81 return new History(entries);
104 entries.add(entry);
178 entries.add(entry);
192 return new History(entries);
H A DMonotoneHistoryParser.java53 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD field in class:MonotoneHistoryParser
87 return new History(entries);
112 entries.add(entry);
181 entries.add(entry);
H A DMercurialHistoryParser.java53 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); field in class:MercurialHistoryParser
96 repository.removeAndVerifyOldestChangeset(entries, changeset);
99 return new History(entries, renamedFiles);
114 entries = new ArrayList<HistoryEntry>();
120 entries.add(entry);
H A DHistory.java34 private List<HistoryEntry> entries; field in class:History
46 History(List<HistoryEntry> entries) { argument
47 this.entries = entries;
50 History(List<HistoryEntry> entries, List<String> renamed) { argument
51 this.entries = entries;
56 * Set the list of log entries for the file. The first entry is the most
59 * @param entries The entries t
61 setHistoryEntries(List<HistoryEntry> entries) argument
[all...]
H A DSubversionHistoryParser.java62 final List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); field in class:SubversionHistoryParser.Handler
118 entries.add(entry);
166 List<HistoryEntry> entries = handler.entries;
171 repos.removeAndVerifyOldestChangeset(entries, sinceRevision);
174 return new History(entries);
203 return new History(handler.entries);
H A DRepository.java139 * @param entries a list of {@code HistoryEntry} objects
143 void removeAndVerifyOldestChangeset(List<HistoryEntry> entries, argument
147 = entries.isEmpty() ? null : entries.remove(entries.size() - 1);
183 * file history entries.
/opengrok/test/org/opensolaris/opengrok/web/
H A DDirectoryListingTest.java51 private FileEntry[] entries; field in class:DirectoryListingTest
116 entries = new FileEntry[2];
117 entries[0] = new FileEntry("foo", 0, 0);
118 entries[1] = new FileEntry("bar", Long.MAX_VALUE, 0);
120 for (FileEntry entry : entries) {
214 for (int ii = 0; ii < entries.length; ++ii) {
215 if (entries[ii] != null && entries[ii].compareTo(entry) == 0) {
216 entries[ii] = null;
252 assertEquals(entries
[all...]
/opengrok/.mvn/wrapper/
H A Dmaven-wrapper.jarorg/apache/maven/wrapper/BootstrapMainStarter.class BootstrapMainStarter.java package org.apache.maven.wrapper public ...
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 25 milliseconds