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

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java58 private final Map<String, Set<Integer>> symbols; field in class:Definitions
65 symbols = new HashMap<>();
71 * Get all symbols used in definitions.
73 * @return a set containing all the symbols
76 return symbols.keySet();
86 return symbols.containsKey(symbol);
98 Set<Integer> lines = symbols.get(symbol);
128 Set<Integer> lines = symbols.get(symbol);
133 * Return the number of distinct symbols.
135 * @return number of distinct symbols
[all...]
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchiveParser.java121 symbols(arc);
215 final public void symbols(Archive arc) throws ParseException { method in class:ArchiveParser
H A DArchive.java161 protected Map symbols = new TreeMap(); field in class:Archive
352 symbols.put(sym, vernum);
356 * Returns a Map of the symbols (tags) associated with each revision.
357 * The symbols are the keys and the revision numbers are the values.
362 return symbols;
684 s.append("symbols");
685 for (Iterator i = symbols.entrySet().iterator(); i.hasNext();)

Completed in 11 milliseconds