/opengrok/src/org/opensolaris/opengrok/analysis/archive/ |
H A D | TarAnalyzer.java | 50 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 58 if (xrefOut != null) { 59 Util.htmlize(name, xrefOut); 60 xrefOut.append("<br/>");
|
H A D | ZipAnalyzer.java | 50 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 58 if (xrefOut != null) { 59 Util.htmlize(name, xrefOut); 60 xrefOut.append("<br/>");
|
H A D | BZip2Analyzer.java | 60 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 78 fa.analyze(doc, bzSrc, xrefOut);
|
H A D | GZIPAnalyzer.java | 66 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 87 fa.analyze(doc, gzSrc, xrefOut);
|
/opengrok/src/org/opensolaris/opengrok/analysis/executables/ |
H A D | JarAnalyzer.java | 51 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 57 if (xrefOut != null) { 58 xrefOut.append("<br/><b>"); 59 Util.htmlize(ename, xrefOut); 60 xrefOut.append("</b>"); 66 if (xrefOut != null) { 67 xrefOut.append("<br/>"); 71 jca.analyze(doc, new BufferedInputStream(zis), xrefOut);
|
H A D | JavaClassAnalyzer.java | 87 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 89 analyze(doc, in, xrefOut); 93 void analyze(Document doc, InputStream in, Writer xrefOut) throws IOException { argument 105 if (xrefOut != null) { 106 xrefOut.append(xref); 108 xrefOut.flush();
|
H A D | ELFAnalyzer.java | 77 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 86 if (xrefOut != null) { 87 xrefOut.append("</pre>"); 88 Util.htmlize(content, xrefOut); 89 xrefOut.append("<pre>");
|
/opengrok/src/org/opensolaris/opengrok/analysis/document/ |
H A D | TroffAnalyzer.java | 55 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 58 if (xrefOut != null) { 60 writeXref(in, xrefOut);
|
/opengrok/src/org/opensolaris/opengrok/analysis/plain/ |
H A D | XMLAnalyzer.java | 56 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 59 if (xrefOut != null) { 61 writeXref(in, xrefOut);
|
H A D | AbstractSourceCodeAnalyzer.java | 68 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 69 super.analyze(doc, src, xrefOut);
|
H A D | PlainAnalyzer.java | 76 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 89 if (xrefOut != null) { 91 writeXref(in, xrefOut);
|
/opengrok/src/org/opensolaris/opengrok/analysis/uue/ |
H A D | UuencodeAnalyzer.java | 54 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument 57 if (xrefOut != null) { 59 writeXref(in, xrefOut);
|
/opengrok/test/org/opensolaris/opengrok/analysis/ |
H A D | TextAnalyzerTest.java | 125 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument
|
/opengrok/src/org/opensolaris/opengrok/analysis/ |
H A D | FileAnalyzer.java | 175 * @param xrefOut where to write the xref (may be {@code null}) 178 public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException { argument
|
H A D | AnalyzerGuru.java | 319 * @param xrefOut Where to write the xref (possibly {@code null}) 323 FileAnalyzer fa, Writer xrefOut) 358 fa.analyze(doc, StreamSource.fromFile(file), xrefOut); 322 populateDocument(Document doc, File file, String path, FileAnalyzer fa, Writer xrefOut) argument
|