Searched refs:ceiling (Results 1 - 25 of 36) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
H A DForwardingSortedSet.java116 Object ceiling = self.tailSet(object).first();
117 return unsafeCompare(ceiling, object) == 0;
141 Object ceiling = iterator.next();
142 if (unsafeCompare(ceiling, object) == 0) {
H A DDescendingImmutableSortedSet.java87 return forward.ceiling(element);
91 public E ceiling(E element) { method in class:DescendingImmutableSortedSet
H A DForwardingNavigableSet.java85 public E ceiling(E e) { method in class:ForwardingNavigableSet
86 return delegate().ceiling(e);
90 * A sensible definition of {@link #ceiling} in terms of the {@code iterator} method of
92 * wish to override {@link #ceiling} to forward to this implementation.
H A DSortedMultisets.java105 public E ceiling(E e) { method in class:SortedMultisets.NavigableElementSet
H A DSets.java946 public E ceiling(E e) { method in class:Sets.FilteredNavigableSet
1422 public E ceiling(E e) { method in class:Sets.UnmodifiableNavigableSet
1423 return delegate.ceiling(e);
1585 return forward.ceiling(e);
1589 public E ceiling(E e) { method in class:Sets.DescendingSet
H A DRegularImmutableSortedSet.java207 public E ceiling(E element) { method in class:RegularImmutableSortedSet
H A DTreeMultiset.java364 node = rootReference.get().ceiling(comparator(), endpoint);
899 @Nullable private AvlNode<E> ceiling(Comparator<? super E> comparator, E e) { method in class:TreeMultiset.AvlNode
902 return (left == null) ? this : MoreObjects.firstNonNull(left.ceiling(comparator, e), this);
906 return (right == null) ? null : right.ceiling(comparator, e);
H A DAbstractMapBasedMultimap.java705 public V ceiling(V v) { method in class:AbstractMapBasedMultimap.WrappedNavigableSet
706 return getSortedSetDelegate().ceiling(v);
1044 public K ceiling(K k) { method in class:AbstractMapBasedMultimap.NavigableKeySet
H A DImmutableSortedSet.java718 public E ceiling(E e) { method in class:ImmutableSortedSet
H A DSynchronized.java1236 @Override public E ceiling(E e) { method in class:Synchronized.SynchronizedNavigableSet
1238 return delegate().ceiling(e);
H A DMaps.java3594 public K ceiling(K e) { method in class:Maps.NavigableKeySet
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DNavigableSetNavigationTester.java87 assertNull(navigableSet.ceiling(samples.e0));
108 assertEquals(a, navigableSet.ceiling(samples.e0));
155 assertEquals(a, navigableSet.ceiling(a));
156 assertEquals(c, navigableSet.ceiling(b));
157 assertEquals(c, navigableSet.ceiling(c));
189 assertEquals(a, navigableSet.ceiling(a));
190 assertEquals(b, navigableSet.ceiling(b));
191 assertEquals(c, navigableSet.ceiling(c));
/external/syslinux/com32/lib/syslinux/
H A Dzonelist.c233 addr_t ceiling, addr_t align)
246 if (list->start + len >= ceiling)
249 if (list->start + size < ceiling)
252 best = ALIGN_DOWN(ceiling - len, align);
230 syslinux_memmap_highest(const struct syslinux_memmap *list, enum syslinux_memmap_types type, addr_t *start, addr_t len, addr_t ceiling, addr_t align) argument
/external/syslinux/com32/include/syslinux/
H A Dmovebits.h89 addr_t ceiling, addr_t align);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java77 @Override public E ceiling(E e) { method in class:SafeTreeSet
78 return delegate.ceiling(checkValid(e));
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingNavigableSetTest.java117 public T ceiling(T e) { method in class:ForwardingNavigableSetTest.StandardImplForwardingNavigableSet
214 forward().ceiling("a");
215 assertEquals("[ceiling(Object)]", getCalls());
H A DSynchronizedNavigableSetTest.java66 @Override public E ceiling(E e) { method in class:SynchronizedNavigableSetTest.TestSet
68 return delegate().ceiling(e);
H A DFilteredCollectionsTest.java362 assertEquals(unfiltered.ceiling(i), filtered.ceiling(i));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeMultiset.java360 node = rootReference.get().ceiling(comparator(), endpoint);
895 @Nullable private AvlNode<E> ceiling(Comparator<? super E> comparator, E e) { method in class:TreeMultiset.AvlNode
898 return (left == null) ? this : MoreObjects.firstNonNull(left.ceiling(comparator, e), this);
902 return (right == null) ? null : right.ceiling(comparator, e);
/external/guice/lib/build/
H A Dfelix-2.0.5.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF/NOTICE META- ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 602 milliseconds

12