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

Method nextInTable

output/java_guava/1.4.13/LocalCache.java:4369–4378  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

4367 */
4368
4369 boolean nextInTable() {
4370 while (nextTableIndex >= 0) {
4371 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) {
4372 if (advanceTo(nextEntry) || nextInChain()) {
4373 return true;
4374 }
4375 }
4376 }
4377 return false;
4378 }
4379
4380 /**
4381 * Advances to the given entry. Returns true if the entry was valid, false if it should be

Callers 1

advanceMethod · 0.95

Calls 3

advanceToMethod · 0.95
nextInChainMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected