Searched defs:xref (Results 1 - 5 of 5) sorted by relevance

/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/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/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...]

Completed in 21 milliseconds