Searched defs:root (Results 1 - 12 of 12) sorted by relevance

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DDeltaAddTextLine.java22 public void patch(Node root, Node prev, List lines) argument
26 lines.add(atLine+i, new Line(root, rcsText[rcsTextOffset+i]));
32 public void patchAnnotate(Node root, Node prev, List lines) argument
H A DDeltaDelTextLine.java17 public void patch(Node root, Node prev, List lines) argument
24 public void patchAnnotate(Node root, Node prev, List lines) argument
H A DDeltaText.java13 private Node root; field in class:DeltaText
19 * @param root Added lines will be annotated to root revision.
22 DeltaText(Node root, Node prev, boolean annotate) argument
24 this.root = root;
45 { ((DeltaTextLine)deltaStack.pop()).patch(root, prev, lines); }
50 { ((DeltaTextLine)deltaStack.pop()).patchAnnotate(root, prev, lines); }
H A DDeltaTextLine.java8 public void patch(Node root, Node prev, List lines); argument
11 public void patchAnnotate(Node root, Node prev, List lines); argument
H A DTrunkNode.java189 void newpatch0(List original, Node root) argument
193 original.add(new Line(root, text[i]));
H A DNode.java265 * Return the root node of the node hierarchy.
266 * @return The root node.
268 public Node root() method in class:Node
599 void newpatch(List original, boolean annotate, Node root) throws InvalidFileFormatException argument
601 DeltaText dt = new DeltaText(root, this.child, annotate);
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DPerforceRepositoryTest.java45 private static File root = new File("/export/opengrok_p4_test"); field in class:PerforceRepositoryTest
52 if (!root.exists() || !(new PerforceRepository()).isWorking()) {
57 FileUtilities.getAllFiles(root, files, false);
73 instance.setDirectoryName(root.getAbsolutePath());
84 instance.setDirectoryName(root.getAbsolutePath());
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRCSHistoryParser.java52 private static File readCVSRoot(File root, File CVSdir, String name) argument
55 String cvsroot = readFirstLine(root);
91 n = n.root();
146 File root = new File(CVSdir, "Root");
147 if (root.canRead()) {
148 return readCVSRoot(root, CVSdir, name);
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java50 * @param root target dir
54 public static void extractArchive(File sourceBundle, File root) argument
63 File file = new File(root, ze.getName());
85 * @param root directory to delete.
87 public static void removeDirs(File root) { argument
88 for (File f : root.listFiles()) {
95 root.delete();
118 * @param root where to start the search
123 public static void getAllFiles(File root, List<File> files, boolean directories) { argument
126 files.add(root);
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFile.java201 private Node root; field in class:EftarFile
213 if (root == null) {
214 root = new Node(1, null);
223 Node n = root;
234 traverse(root);
238 out.writeShort(root.children.size());
241 write(root);
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java174 * @param root which db to search
178 private void searchSingleDatabase(File root,boolean paging) throws IOException { argument
180 ireader = IndexReader.open(FSDirectory.open(root));
201 * @param root list of projects to search
204 private void searchMultiDatabase(List<Project> root,boolean paging) argument
207 IndexReader[] subreaders = new IndexReader[root.size()];
210 for (Project project : root) {
268 File root = new File(cfg.getDataRootFile(), "index");
278 searchSingleDatabase(root, true);
/opengrok-jel/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 19 milliseconds