Home
last modified time | relevance | path

Searched defs:fromElement (Results 1 – 20 of 20) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DContiguousSet.java50 @Override public ContiguousSet<C> subSet(C fromElement, C toElement) { in subSet()
57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, in subSet()
65 @Override public ContiguousSet<C> tailSet(C fromElement) { in tailSet()
69 @Override ContiguousSet<C> tailSet(C fromElement, boolean inclusive){ in tailSet()
78 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, in subSetImpl()
81 /*@Override*/ abstract ContiguousSet<C> tailSetImpl(C fromElement, boolean inclusive); in tailSetImpl()
DForwardingSortedSet.java86 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
91 public SortedSet<E> tailSet(E fromElement) { in tailSet()
163 @Beta protected SortedSet<E> standardSubSet(E fromElement, E toElement) { in standardSubSet()
DSortedMultisets.java50 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
59 @Override public SortedSet<E> tailSet(E fromElement) { in tailSet()
127 @Override public SortedMultiset<E> subMultiset(E fromElement, in subMultiset()
133 @Override public SortedMultiset<E> tailMultiset(E fromElement, in tailMultiset()
DImmutableSortedSet.java619 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { in subSet()
624 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
643 public ImmutableSortedSet<E> tailSet(E fromElement) { in tailSet()
647 ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
658 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive); in subSetImpl()
660 abstract ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive); in tailSetImpl()
DEmptyImmutableSortedSet.java111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl()
116 ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive) { in tailSetImpl()
DStandardRowSortedTable.java103 public SortedSet<R> subSet(R fromElement, R toElement) { in subSet()
112 public SortedSet<R> tailSet(R fromElement) { in tailSet()
DEmptyContiguousSet.java66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl()
70 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl()
DRegularImmutableSortedSet.java214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl()
220 ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive) { in tailSetImpl()
DRegularContiguousSet.java56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl()
63 /* @Override */ ContiguousSet<C> tailSetImpl(C fromElement, boolean inclusive) { in tailSetImpl()
DAbstractMultimap.java692 public SortedSet<V> subSet(V fromElement, V toElement) { in subSet()
700 public SortedSet<V> tailSet(V fromElement) { in tailSet()
980 public SortedSet<K> subSet(K fromElement, K toElement) { in subSet()
985 public SortedSet<K> tailSet(K fromElement) { in tailSet()
DConstraints.java178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
182 @Override public SortedSet<E> tailSet(E fromElement) { in tailSet()
DSynchronized.java260 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
274 public SortedSet<E> tailSet(E fromElement) { in tailSet()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeSet.java172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
182 @Override public SortedSet<E> tailSet(E fromElement) { in tailSet()
186 @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DEmptyContiguousSet.java64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl()
68 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl()
DRegularContiguousSet.java54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl()
61 /* @Override */ ContiguousSet<C> tailSetImpl(C fromElement, boolean inclusive) { in tailSetImpl()
DImmutableSortedSet.java333 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { in subSet()
337 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, in subSet()
349 public ImmutableSortedSet<E> tailSet(E fromElement) { in tailSet()
358 ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
DSynchronized.java247 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
261 public SortedSet<E> tailSet(E fromElement) { in tailSet()
/external/smali/util/src/main/java/org/jf/util/
DArraySortedSet.java136 public SortedSet<T> subSet(T fromElement, T toElement) { in subSet()
146 public SortedSet<T> tailSet(T fromElement) { in tailSet()
/external/guava/guava-tests/test/com/google/common/collect/
DForwardingSortedSetTest.java100 @Override public SortedSet<T> subSet(T fromElement, T toElement) { in subSet()
/external/chromium_org/third_party/WebKit/Source/core/events/
DMouseEvent.cpp182 Node* MouseEvent::fromElement() const in fromElement() function in blink::MouseEvent