Searched refs:tag (Results 1 - 9 of 9) sorted by relevance

/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DCtagsTest.java112 for (Definitions.Tag tag : result.getTags()) {
113 if (tag.type.startsWith("method")) {
115 assertEquals("method name", names[count], tag.symbol);
116 assertEquals("method line", lines[count], tag.line);
139 for (Definitions.Tag tag : result.getTags()) {
140 if (tag.type.startsWith("function")) {
142 assertEquals("function name", names[count], tag.symbol);
143 assertEquals("function line", lines[count], tag.line);
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DHit.java205 * Holds value of property tag.
207 private String tag; field in class:Hit
210 * Getter for property tag.
211 * @return Value of property tag.
215 return this.tag;
219 * Setter for property tag.
220 * @param tag New value of property tag.
222 public void setTag(String tag) { argument
224 this.tag
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFile.java65 public String tag; field in class:EftarFile.Node
71 public Node(long hash, String tag) { argument
73 this.tag = tag;
155 if (n.tag != null) {
156 out.write(n.tag.getBytes());
157 offset += n.tag.length();
166 if (childnode.tag == null) {
169 out.writeShort((short) childnode.tag.length());
172 if (childnode.tag
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DContext.java163 for (Definitions.Tag tag : tags.getTags()) {
165 if (m[i].match(tag.symbol) == LineMatcher.MATCHED) {
167 tag.symbol, // matched symbol
168 Integer.toString(tag.line), // line number
169 tag.type, // tag type
170 tag.text // matching line
197 matchingTags.put(tag.line, desc);
213 * Just to get the matching tag send a null in
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DJFlexXref.java351 for (Tag tag : defs.getTags()) {
352 Style style = getStyle(tag.type);
359 tags.add(tag);
380 for (Tag tag : tags) {
385 out.append(Util.jsStringLiteral(tag.symbol));
387 out.append(Integer.toString(tag.line));
H A DDefinitions.java74 * Check if there is a tag for a symbol.
76 * @return {@code true} iff there is a tag for {@code symbol}
95 // Get tag info
99 for (Tag tag : line_map.sym_tags.get(symbol)) {
101 strs[0] = tag.type;
140 * Class that represents a single tag.
145 /** Line number of the tag. */
149 /** The type of the tag. */
187 // Insert sym->tag map for this line
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DCommandLineOptions.java140 private void spool(BufferedReader reader, PrintWriter out, String tag) throws IOException { argument
143 if (line.equals(tag)) {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DJavaClassAnalyzer.java360 byte tag = c.getTag();
362 switch (tag) {
422 throw new ClassFormatException("Unknown constant type " + tag);
/opengrok-jel/lib/
H A Dbcel-5.2.jar ... .Serializable { protected int name_index protected int length protected byte tag protected org.apache.bcel.classfile.ConstantPool ...

Completed in 18 milliseconds