Searched refs:xref (Results 1 - 25 of 32) sorted by relevance

12

/opengrok/src/org/opensolaris/opengrok/analysis/uue/
H A DUuencodeAnalyzer.java45 private UuencodeXref xref; field in class:UuencodeAnalyzer
79 if (xref == null) {
80 xref = new UuencodeXref(in);
82 xref.reInit(in);
84 xref.project = project;
85 xref.write(out);
92 * @param out Output xref writer
97 UuencodeXref xref = new UuencodeXref(in);
98 xref.annotation = annotation;
99 xref
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzer.java45 private TroffXref xref; field in class:TroffAnalyzer
80 if (xref == null) {
81 xref = new TroffXref(in);
83 xref.reInit(in);
85 xref.project = project;
87 xref.write(out);
95 * @param out Output xref writer
100 TroffXref xref = new TroffXref(in);
101 xref.project = project;
102 xref
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/plain/
H A DXMLAnalyzer.java45 private final XMLXref xref = new XMLXref(AnalyzerGuru.dummyR); field in class:XMLAnalyzer
73 xref.reInit(in);
74 xref.project = project;
75 xref.write(out);
82 * @param out Output xref writer
87 XMLXref xref = new XMLXref(in);
88 xref.annotation = annotation;
89 xref.project = project;
90 xref.setDefs(defs);
91 xref
[all...]
H A DPlainAnalyzer.java51 private JFlexXref xref; field in class:PlainAnalyzer
62 * Create an xref for the language supported by this analyzer.
63 * @param reader the data to produce xref for
64 * @return an xref instance
94 Scopes scopes = xref.getScopes();
109 if (xref == null) {
110 xref = newXref(in);
112 xref.reInit(in);
114 xref.setDefs(defs);
115 xref
[all...]
/opengrok/test/org/opensolaris/opengrok/analysis/
H A DJFlexXrefTest.java73 * returned by an xref.
132 * @param xref an instance of the xref class to test
134 private void bug15890LineCount(JFlexXref xref) throws Exception { argument
135 xref.write(new StringWriter());
136 assertEquals(10, xref.getLineNumber());
167 JFlexXref xref = klass.getConstructor(Reader.class).newInstance(in);
168 xref.setDefs(defs);
171 xref.write(out);
203 * line with the specified xref clas
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/sql/
H A DPLSQLAnalyzer.java51 * @param out output xref writer
56 PLSQLXref xref = new PLSQLXref(in);
57 xref.annotation = annotation;
58 xref.project = project;
59 xref.setDefs(defs);
60 xref.write(out);
H A DSQLAnalyzer.java51 * @param out output xref writer
56 SQLXref xref = new SQLXref(in);
57 xref.annotation = annotation;
58 xref.project = project;
59 xref.setDefs(defs);
60 xref.write(out);
/opengrok/test/org/opensolaris/opengrok/analysis/plain/
H A DXMLAnalyzerTest.java45 String[] xref = sw.toString().split("\n");
47 assertTrue(xref[2].contains("path=com/foo/bar/MyClass"));
49 assertTrue(xref[3].contains("path=README.txt"));
69 String[] xref = sw.toString().split("\n");
71 assertTrue(xref[7].contains("org.quartz.plugin.jobInitializer.fileNames</a> = <a href=\"/source/s?path=../\">..</a>/"));
/opengrok/src/org/opensolaris/opengrok/analysis/erlang/
H A DErlangAnalyzer.java62 ErlangXref xref = new ErlangXref(in);
63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/fortran/
H A DFortranAnalyzer.java57 FortranXref xref = new FortranXref(in);
58 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/haskell/
H A DHaskellAnalyzer.java62 HaskellXref xref = new HaskellXref(in);
63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptAnalyzer.java62 JavaScriptXref xref = new JavaScriptXref(in);
63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispAnalyzer.java57 LispXref xref = new LispXref(in);
58 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/perl/
H A DPerlAnalyzer.java60 PerlXref xref = new PerlXref(in);
61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/php/
H A DPhpAnalyzer.java60 PhpXref xref = new PhpXref(in);
61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/python/
H A DPythonAnalyzer.java60 PythonXref xref = new PythonXref(in);
61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/scala/
H A DScalaAnalyzer.java60 ScalaXref xref = new ScalaXref(in);
61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/sh/
H A DShAnalyzer.java61 ShXref xref = new ShXref(in);
62 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/tcl/
H A DTclAnalyzer.java57 TclXref xref = new TclXref(in);
58 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/vb/
H A DVBAnalyzer.java60 VBXref xref = new VBXref(in);
61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/clojure/
H A DClojureAnalyzer.java53 ClojureXref xref = new ClojureXref(in);
54 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/golang/
H A DGolangAnalyzer.java62 GolangXref xref = new GolangXref(in);
63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/lua/
H A DLuaAnalyzer.java62 LuaXref xref = new LuaXref(in);
63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
/opengrok/src/org/opensolaris/opengrok/analysis/c/
H A DCAnalyzer.java68 CXref xref = new CXref(in);
69 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
H A DCxxAnalyzer.java66 CxxXref xref = new CxxXref(in);
67 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);

Completed in 1712 milliseconds

12