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

/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DDeltaAddTextLine.java21 public void patch(Node root, Node prev, List lines) argument
25 lines.add(atLine+i, new Line(root, rcsText[rcsTextOffset+i]));
30 public void patchAnnotate(Node root, Node prev, List lines) argument
H A DDeltaDelTextLine.java16 public void patch(Node root, Node prev, List lines) argument
22 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;
43 { ((DeltaTextLine)deltaStack.pop()).patch(root, prev, lines); }
48 { ((DeltaTextLine)deltaStack.pop()).patchAnnotate(root, prev, lines); }
H A DDeltaTextLine.java7 public void patch(Node root, Node prev, List lines); argument
9 public void patchAnnotate(Node root, Node prev, List lines); argument
H A DTrunkNode.java187 void newpatch0(List original, Node root) argument
191 original.add(new Line(root, text[i]));
H A DNode.java250 * Return the root node of the node hierarchy.
251 * @return The root node.
253 public Node root() method in class:Node
582 void newpatch(List original, boolean annotate, Node root) throws InvalidFileFormatException argument
584 DeltaText dt = new DeltaText(root, this.child, annotate);
/opengrok-sun/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-sun/src/org/opensolaris/opengrok/history/
H A DRCSHistoryParser.java48 private static File readCVSRoot(File root, File CVSdir, String name) throws IOException { argument
49 String cvsroot = readFirstLine(root);
85 n = n.root();
140 File root = new File(CVSdir, "Root");
141 if (root.canRead()) {
142 return readCVSRoot(root, CVSdir, name);
/opengrok-sun/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java45 public static void extractArchive(File sourceBundle, File root) throws IOException { argument
52 File file = new File(root, ze.getName());
65 public static void removeDirs(File root) { argument
66 for (File f : root.listFiles()) {
73 root.delete();
87 public static void getAllFiles(File root, List<File> files, boolean directories) { argument
90 files.add(root);
95 for (File f : root.listFiles()) {
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DEftarFile.java200 private Node root; field in class:EftarFile
212 if (root == null) {
213 root = new Node(1, null);
222 Node n = root;
233 traverse(root);
237 out.writeShort(root.children.size());
240 write(root);
/opengrok-sun/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java159 * @param root which db to search
162 private void searchSingleDatabase(File root, boolean paging) throws IOException { argument
163 IndexReader ireader = DirectoryReader.open(FSDirectory.open(root));
184 * @param root list of projects to search
187 private void searchMultiDatabase(List<Project> root, boolean paging) throws IOException { argument
188 IndexReader[] subreaders = new IndexReader[root.size()];
191 for (Project project : root) {
241 File root = new File(env.getDataRootFile(), "index");
250 searchSingleDatabase(root, true);
/opengrok-sun/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 35 milliseconds