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

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DScopes.java44 public static class Scope implements Serializable, Comparable<Scope> { class in class:Scopes
54 public Scope(int lineFrom, int lineTo, String name, String namespace) { method in class:Scopes.Scope
58 public Scope(int lineFrom, int lineTo, String name, String namespace, String signature) { method in class:Scopes.Scope
66 public Scope(int lineFrom) { method in class:Scopes.Scope
75 public int compareTo(Scope o) {
121 public static final Scope GLOBAL_SCOPE = new Scope(0, 0, "global", null, null);
124 private TreeSet<Scope> scopes = new TreeSet<>();
134 public void addScope(Scope scop
[all...]

Completed in 8 milliseconds