MCPcopy Create free account
hub / github.com/antlr/codebuff / nextInChain

Method nextInChain

output/java_guava/1.4.13/LocalCache.java:4354–4363  ·  view source on GitHub ↗

Finds the next entry in the current chain. Returns true if an entry was found.

()

Source from the content-addressed store, hash-verified

4352 */
4353
4354 boolean nextInChain() {
4355 if (nextEntry != null) {
4356 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
4357 if (advanceTo(nextEntry)) {
4358 return true;
4359 }
4360 }
4361 }
4362 return false;
4363 }
4364
4365 /**
4366 * Finds the next entry in the current table. Returns true if an entry was found.

Callers 2

advanceMethod · 0.95
nextInTableMethod · 0.95

Calls 2

advanceToMethod · 0.95
getNextMethod · 0.65

Tested by

no test coverage detected