Searched defs:symbol (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java54 /** Map from symbol to the line numbers on which the symbol is defined. */
74 * Check if there is a tag for a symbol.
75 * @param symbol the symbol to check
76 * @return {@code true} iff there is a tag for {@code symbol}
78 public boolean hasSymbol(String symbol) { argument
79 return symbols.containsKey(symbol);
83 * Check whether the specified symbol is defined on the given line.
84 * @param symbol th
89 hasDefinitionAt(String symbol, int lineNumber, String[] strs) argument
118 occurrences(String symbol) argument
148 public final String symbol; field in class:Definitions.Tag
154 Tag(int line, String symbol, String type, String text) argument
162 addTag(int line, String symbol, String type, String text) argument
[all...]
H A DJFlexXref.java64 /** symbol definitions to use when writing out related info */
228 * Set the symbol defintions to use when writing out related info.
229 * @param defs symbol definitions to use. Might be {@code null}.
325 * the type, and an array of (symbol, line) pairs for the definitions of
330 // No definitions, no symbol table to write
334 // We want the symbol table to be sorted
338 // Order by symbol name, and then by line number if multiple
339 // definitions use the same symbol name
340 int ret = tag1.symbol.compareTo(tag2.symbol);
517 writeSymbol(String symbol, Set<String> keywords, int line, boolean escape) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java105 * Holds value of property symbol.
107 private String symbol; field in class:SearchEngine
150 .setRefs(symbol)
527 * Getter for property symbol.
529 * @return Value of property symbol.
532 return symbol;
536 * Setter for property symbol.
538 * @param symbol New value of property symbol.
540 public void setSymbol(String symbol) { argument
[all...]

Completed in 16 milliseconds