Lines Matching refs:line
42 // Per line sym -> tags mapping
51 // line -> tag_map
54 /** Map from symbol to the line numbers on which the symbol is defined. */
83 * Check whether the specified symbol is defined on the given line.
85 * @param lineNumber the line to check
87 * @return {@code true} iff {@code symbol} is defined on the specified line
146 public final int line;
151 /** The full line on which the definition occurs. */
154 protected Tag(int line, String symbol, String type, String text) {
155 this.line = line;
162 public void addTag(int line, String symbol, String type, String text) {
163 Tag new_tag = new Tag(line, symbol, type, text);
170 Integer aLine = Integer.valueOf(line);
173 // Get per line map
180 // Insert sym->tag map for this line