Searched defs:in (Results 1 - 25 of 65) sorted by relevance

123

/opengrok-sun/src/org/opensolaris/opengrok/analysis/
H A DTextAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
39 public final void analyze(Document doc, InputStream in) throws IOException { argument
42 in.mark(3);
45 int br = in.read(head, 0, 3);
51 in.reset();
60 in.reset();
64 analyze(doc, new InputStreamReader(in, charset));
/opengrok-sun/src/org/opensolaris/opengrok/analysis/c/
H A DCAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
56 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
57 CXref xref = new CXref(in);
58 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DCAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
47 "XS", // Mainly found in perl directories
61 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
63 CAnalyzer.writeXref(in, out, defs, annotation, project);
H A DCxxAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
54 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
55 CxxXref xref = new CxxXref(in);
56 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DCxxAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
59 CxxAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/csharp/
H A DCSharpAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
49 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
50 CSharpXref xref = new CSharpXref(in);
51 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DCSharpAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
55 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
57 CSharpAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
51 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
54 TroffAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/executables/
H A DJarAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
56 public void analyze(Document doc, InputStream in) throws IOException { argument
59 ZipInputStream zis = new ZipInputStream(in);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/fortran/
H A DFortranAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
49 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
50 FortranXref xref = new FortranXref(in);
51 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DFortranAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
52 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
54 FortranAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/java/
H A DJavaAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
53 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
54 JavaXref xref = new JavaXref(in);
55 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DJavaAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
55 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
57 JavaAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
53 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
54 JavaScriptXref xref = new JavaScriptXref(in);
55 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DJavaScriptAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
54 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
56 JavaScriptAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
49 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
50 LispXref xref = new LispXref(in);
51 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DLispAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
54 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
56 LispAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/perl/
H A DPerlAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
52 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
53 PerlXref xref = new PerlXref(in);
54 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DPerlAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
64 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
66 PerlAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/php/
H A DPhpAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
52 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
53 PhpXref xref = new PhpXref(in);
54 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DPhpAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
59 PhpAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/plain/
H A DPlainAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
41 public FileAnalyzerFactory isMagic(byte[] content, InputStream in)
101 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
104 PlainAnalyzer.writeXref(in, out, defs, annotation, project);
H A DXMLAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
60 XMLAnalyzer.writeXref(in, out, defs, annotation, project);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/python/
H A DPythonAnalyzer.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
52 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument
53 PythonXref xref = new PythonXref(in);
54 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DPythonAnalyzerFactory.java6 * You may not use this file except in compliance with the License.
8 * See LICENSE.txt included in this distribution for the specific
11 * When distributing Covered Code, include this CDDL HEADER in each
64 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument
66 PythonAnalyzer.writeXref(in, out, defs, annotation, project);

Completed in 67 milliseconds

123