Home | History | Annotate | Download | only in lookup

Lines Matching refs:curr

98       Node curr = root;
104 curr = curr.insert(simpleName, nodeSym);
108 if (curr == null || !Objects.equals(curr.sym, nodeSym)) {
131 Node curr = root;
133 curr = curr.lookup(lookupKey.first());
134 if (curr == null) {
137 if (curr.sym != null) {
138 return new LookupResult(curr.sym, lookupKey);
149 Node curr = root;
151 curr = curr.lookup(bit);
152 if (curr == null || curr.sym != null) {
156 return new PackageIndex(curr);