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

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java56 * Map from symbol to the line numbers on which the symbol is defined.
80 * Check if there is a tag for a symbol.
82 * @param symbol the symbol to check
83 * @return {@code true} if there is a tag for {@code symbol}
85 public boolean hasSymbol(String symbol) { argument
86 return symbols.containsKey(symbol);
90 * Check whether the specified symbol is defined on the given line.
92 * @param symbol th
97 hasDefinitionAt(String symbol, int lineNumber, String[] strs) argument
127 occurrences(String symbol) argument
186 public final String symbol; field in class:Definitions.Tag
204 Tag(int line, String symbol, String type, String text, String namespace, String signature) argument
214 addTag(int line, String symbol, String type, String text) argument
218 addTag(int line, String symbol, String type, String text, String namespace, String signature) argument
[all...]
H A DCtags.java499 String lnum, String symbol, String type, String text, String namespace, String signature) {
500 // The strings are frequently repeated (a symbol can be used in
508 LOGGER.log(Level.WARNING, "CTags line number parsing problem(but I will continue with line # 0) for symbol {0}", symbol);
510 defs.addTag(lineno, seenSymbols.intern(symbol.trim()),
498 addTag(Definitions defs, Interner<String> seenSymbols, String lnum, String symbol, String type, String text, String namespace, String signature) argument
H A DJFlexXref.java245 scope = new Scope(tag.line, tag.line, tag.symbol, tag.namespace, tag.signature);
354 * the type, and an array of (symbol, line) pairs for the definitions of
359 // No definitions, no symbol table to write
363 // We want the symbol table to be sorted
367 // Order by symbol name, and then by line number if multiple
368 // definitions use the same symbol name
369 int ret = tag1.symbol.compareTo(tag2.symbol);
415 out.append(Util.jsStringLiteral(tag.symbol));
532 * Write a symbol an
540 writeSymbol(String symbol, Set<String> keywords, int line) argument
555 writeSymbol( String symbol, Set<String> keywords, int line, boolean caseSensitive) argument
[all...]
/opengrok/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java116 * Holds value of property symbol.
118 private String symbol; field in class:SearchEngine
162 .setRefs(symbol)
551 * Getter for property symbol.
553 * @return Value of property symbol.
556 return this.symbol;
560 * Setter for property symbol.
562 * @param symbol New value of property symbol.
564 public void setSymbol(String symbol) { argument
[all...]

Completed in 14 milliseconds