| /external/guava/guava/src/com/google/common/collect/ |
| D | ContiguousSet.java | 42 @Override public ContiguousSet<C> headSet(C toElement) { in headSet() 46 @Override ContiguousSet<C> headSet(C toElement, boolean inclusive) { in headSet() 50 @Override public ContiguousSet<C> subSet(C fromElement, C toElement) { in subSet() 57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, in subSet() 76 /*@Override*/ abstract ContiguousSet<C> headSetImpl(C toElement, boolean inclusive); in headSetImpl() 79 C toElement, boolean toInclusive); in subSetImpl()
|
| D | ForwardingSortedSet.java | 76 public SortedSet<E> headSet(E toElement) { in headSet() 86 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 163 @Beta protected SortedSet<E> standardSubSet(E fromElement, E toElement) { in standardSubSet()
|
| D | SortedMultisets.java | 50 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 55 @Override public SortedSet<E> headSet(E toElement) { in headSet() 121 @Override public SortedMultiset<E> headMultiset(E toElement, in headMultiset() 128 BoundType fromBoundType, E toElement, BoundType toBoundType) { in subMultiset()
|
| D | ImmutableSortedSet.java | 597 public ImmutableSortedSet<E> headSet(E toElement) { in headSet() 601 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { in headSet() 619 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { in subSet() 624 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 655 abstract ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive); in headSetImpl() 658 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive); in subSetImpl()
|
| D | EmptyImmutableSortedSet.java | 105 ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive) { in headSetImpl() 111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl()
|
| D | StandardRowSortedTable.java | 96 public SortedSet<R> headSet(R toElement) { in headSet() 103 public SortedSet<R> subSet(R fromElement, R toElement) { in subSet()
|
| D | EmptyContiguousSet.java | 61 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { in headSetImpl() 66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl()
|
| D | RegularImmutableSortedSet.java | 200 ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive) { in headSetImpl() 214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl()
|
| D | RegularContiguousSet.java | 45 /* @Override */ ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { in headSetImpl() 56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl()
|
| D | AbstractMultimap.java | 684 public SortedSet<V> headSet(V toElement) { in headSet() 692 public SortedSet<V> subSet(V fromElement, V toElement) { in subSet() 970 public SortedSet<K> headSet(K toElement) { in headSet() 980 public SortedSet<K> subSet(K fromElement, K toElement) { in subSet()
|
| D | Constraints.java | 175 @Override public SortedSet<E> headSet(E toElement) { in headSet() 178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
|
| D | Synchronized.java | 260 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 267 public SortedSet<E> headSet(E toElement) { in headSet()
|
| /external/guava/guava-testlib/src/com/google/common/collect/testing/ |
| D | SafeTreeSet.java | 118 @Override public SortedSet<E> headSet(E toElement) { in headSet() 122 @Override public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
|
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| D | EmptyContiguousSet.java | 59 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { in headSetImpl() 64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl()
|
| D | RegularContiguousSet.java | 43 /* @Override */ ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { in headSetImpl() 54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl()
|
| D | ImmutableSortedSet.java | 296 public ImmutableSortedSet<E> headSet(E toElement) { in headSet() 317 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { in headSet() 333 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { in subSet() 337 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, in subSet()
|
| D | Synchronized.java | 247 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 254 public SortedSet<E> headSet(E toElement) { in headSet()
|
| /external/smali/util/src/main/java/org/jf/util/ |
| D | ArraySortedSet.java | 136 public SortedSet<T> subSet(T fromElement, T toElement) { in subSet() 141 public SortedSet<T> headSet(T toElement) { in headSet()
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| D | Element.h | 643 template<typename T> inline T& toElement(Node& node) in toElement() function 648 template<typename T> inline T* toElement(Node* node) in toElement() function 653 template<typename T> inline const T& toElement(const Node& node) in toElement() function 658 template<typename T> inline const T* toElement(const Node* node) in toElement() function 663 template<typename T, typename U> inline T* toElement(const RefPtr<U>& node) { return toElement<T>(n… in toElement() function
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| D | ForwardingSortedSetTest.java | 100 @Override public SortedSet<T> subSet(T fromElement, T toElement) { in subSet()
|
| /external/chromium_org/third_party/WebKit/Source/core/events/ |
| D | MouseEvent.cpp | 173 Node* MouseEvent::toElement() const in toElement() function in blink::MouseEvent
|
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/ |
| D | mootools-1.2.2-core-nc.js | 3058 toElement: function(){ method
|
| D | concat-jquery-mootools-prototype.js | 7434 toElement: function(){ method
|