/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | DeltaTextLine.java | 3 import java.util.List; 7 public void patch(Node root, Node prev, List lines); 9 public void patchAnnotate(Node root, Node prev, List lines);
|
H A D | Path.java | 63 import java.util.List; 82 private List path = new LinkedList(); 134 public List patch() 152 public List patch(boolean annotate) 171 public List patch(List lines) 191 public List patch(List lines, boolean annotate) 211 public List newpatch(List line [all...] |
H A D | DeltaAddTextLine.java | 3 import java.util.List; 21 public void patch(Node root, Node prev, List lines) 30 public void patchAnnotate(Node root, Node prev, List lines)
|
H A D | DeltaDelTextLine.java | 3 import java.util.List; 16 public void patch(Node root, Node prev, List lines) 22 public void patchAnnotate(Node root, Node prev, List lines)
|
H A D | DeltaText.java | 4 import java.util.List; 38 void patch(List lines)
|
H A D | TrunkNode.java | 60 import java.util.List; 176 protected void patch0(List original, boolean annotate) 187 void newpatch0(List original, Node root)
|
/opengrok/src/org/opensolaris/opengrok/history/ |
H A D | History.java | 27 import java.util.List; 34 private List<HistoryEntry> entries; 40 private List<String> renamedFiles = new ArrayList<String>(); 46 History(List<HistoryEntry> entries) { 50 History(List<HistoryEntry> entries, List<String> renamed) { 61 public void setHistoryEntries(List<HistoryEntry> entries) { 70 public List<HistoryEntry> getHistoryEntries() { 82 public List<HistoryEntry> getHistoryEntries(int limit, int offset) { 123 public List<Strin [all...] |
H A D | HistoryReader.java | 29 import java.util.List; 37 private final List<HistoryEntry> entries;
|
/opengrok/src/org/opensolaris/opengrok/analysis/ |
H A D | FileAnalyzerFactory.java | 31 import java.util.List; 45 /** List of file names on which this kind of analyzer should be used. */ 46 private final List<String> names; 47 /** List of file prefixes on which this kind of analyzer should be 49 private final List<String> prefixes; 50 /** List of file extensions on which this kind of analyzer should be 52 private final List<String> suffixes; 53 /** List of magic strings used to recognize files on which this kind of 55 private final List<String> magics; 56 /** List o [all...] |
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/diff/ |
H A D | DeleteDelta.java | 60 import java.util.List; 85 public void verify(List target) 94 public void applyTo(List target)
|
H A D | Chunk.java | 63 import java.util.List; 82 protected List chunk; 127 public Chunk(List iseq, int pos, int count) 141 public Chunk(List iseq, int pos, int count, int offset) 201 public List chunk() 212 public boolean verify(List target) 236 public void applyDelete(List target) 249 public void applyAdd(int start, List target) 290 * Retreives the specified part from a {@link List List} [all...] |
H A D | AddDelta.java | 60 import java.util.List; 85 public void verify(List target) throws PatchFailedException 93 public void applyTo(List target)
|
H A D | ChangeDelta.java | 60 import java.util.List; 84 public void verify(List target) throws PatchFailedException 96 public void applyTo(List target)
|
H A D | Delta.java | 60 import java.util.List; 161 public abstract void verify(List target) 169 public final void patch(List target) 188 public abstract void applyTo(List target);
|
H A D | Revision.java | 64 import java.util.List; 94 List deltas_ = new LinkedList(); 161 List target = new ArrayList(Arrays.asList(src)); 172 public synchronized void applyTo(List target) throws PatchFailedException
|
/opengrok/test/org/opensolaris/opengrok/analysis/ |
H A D | IteratorReaderTest.java | 30 import java.util.List; 46 List<String> empty = Collections.emptyList(); 59 new IteratorReader((List<String>) null);
|
/opengrok/test/org/opensolaris/opengrok/web/ |
H A D | ProjectHelperTestBase.java | 28 import java.util.List; 51 protected static List<Project> projects; 52 protected static List<RepositoryInfo> repositories; 54 protected static Map<Project, List<RepositoryInfo>> repositories_map; 66 List<RepositoryInfo> rps, 67 List<Project> prjs, 68 Map<Project, List<RepositoryInfo>> map) { 77 List<RepositoryInfo> infos = map.get(p); 93 List<RepositoryInfo> rps, 94 List<Projec [all...] |
/opengrok/src/org/opensolaris/opengrok/index/ |
H A D | IgnoredNames.java | 27 import java.util.List; 44 public List<String> getItems() { 45 List<String> twoLists = new ArrayList<>(); 62 public void setItems(List<String> item) {
|
H A D | Filter.java | 30 import java.util.List; 41 private final List<Pattern> patterns; 43 private final List<String> paths; 48 private final List<String> items; 67 public List<String> getItems() { 75 public void setItems(List<String> item) {
|
/opengrok/egrok/src/org/opensolaris/opengrok/egrok/model/ |
H A D | HitContainer.java | 4 import java.util.List; 10 private List<Hit> hits = new ArrayList<Hit>();
|
/opengrok/test/org/opensolaris/opengrok/util/ |
H A D | ExecutorTest.java | 30 import java.util.List; 65 List<String> cmdList = new ArrayList<String>(); 77 List<String> cmdList = new ArrayList<String>(); 92 List<String> cmdList = new ArrayList<String>();
|
H A D | InternerTest.java | 30 import java.util.List; 94 Interner<List<String>> interner = new Interner<List<String>>(); 96 List<String> l1_1_i = interner.intern(l1_1); 97 List<String> l1_2_i = interner.intern(l1_2); 98 List<String> l2_1_i = interner.intern(l2_1); 99 List<String> l2_2_i = interner.intern(l2_2);
|
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/util/ |
H A D | ToString.java | 62 import java.util.List; 110 List l = new LinkedList(); 128 List l = new LinkedList(); 151 List l = new LinkedList();
|
/opengrok/src/org/opensolaris/opengrok/authorization/ |
H A D | AuthorizationFramework.java | 33 import java.util.List; 60 List<IAuthorizationPlugin> plugins; 138 private List<IAuthorizationPlugin> getPlugins() { 139 List<IAuthorizationPlugin> p; 181 private List<File> listFiles(String suffix) { 198 private List<File> listFilesRec(String suffix) { 202 private List<File> listFilesClassesRec(File start, String suffix) { 203 List<File> results = new ArrayList<>(); 208 List<File> files = Arrays.asList(fs); 299 List<Fil [all...] |
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/tools/ |
H A D | JDiff.java | 65 import java.util.List; 85 List lines = new ArrayList();
|