Home
last modified time | relevance | path

Searched refs:tailIndex (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DRegularImmutableSortedSet.java208 int index = tailIndex(element, true); in ceiling()
214 int index = tailIndex(element, false); in higher()
238 return getSubSet(tailIndex(fromElement, inclusive), size()); in tailSetImpl()
241 int tailIndex(E fromElement, boolean inclusive) { in tailIndex() method in RegularImmutableSortedSet
DRegularImmutableSortedMultiset.java92 return getSubMultiset(elementSet.tailIndex(lowerBound, checkNotNull(boundType) == CLOSED), in tailMultiset()
DRegularImmutableSortedMap.java119 return getSubMap(keySet.tailIndex(checkNotNull(fromKey), inclusive), size()); in tailMap()
DMapMakerInternalMap.java2607 int tailIndex = headIndex; in expand() local
2610 if (newIndex != tailIndex) { in expand()
2612 tailIndex = newIndex; in expand()
2616 newTable.set(tailIndex, tail); in expand()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2937 int tailIndex = headIndex; in expand() local
2940 if (newIndex != tailIndex) { in expand()
2942 tailIndex = newIndex; in expand()
2946 newTable.set(tailIndex, tail); in expand()