Searched refs:tailIndex (Results 1 – 5 of 5) sorted by relevance
/external/guava/guava/src/com/google/common/collect/ |
D | RegularImmutableSortedSet.java | 208 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
|
D | RegularImmutableSortedMultiset.java | 92 return getSubMultiset(elementSet.tailIndex(lowerBound, checkNotNull(boundType) == CLOSED), in tailMultiset()
|
D | RegularImmutableSortedMap.java | 119 return getSubMap(keySet.tailIndex(checkNotNull(fromKey), inclusive), size()); in tailMap()
|
D | MapMakerInternalMap.java | 2607 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/ |
D | LocalCache.java | 2937 int tailIndex = headIndex; in expand() local 2940 if (newIndex != tailIndex) { in expand() 2942 tailIndex = newIndex; in expand() 2946 newTable.set(tailIndex, tail); in expand()
|