Searched defs:toElement (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLabelElement.h88 template<typename T> inline const T& toElement(const FormAssociatedElement&);
89 template<typename T> inline const T* toElement(const FormAssociatedElement*);
91 template<> inline const HTMLLabelElement* toElement<HTMLLabelElement>(const FormAssociatedElement* element) function in namespace:blink
99 template<> inline const HTMLLabelElement& toElement<HTMLLabelElement>(const FormAssociatedElement& element) function in namespace:blink
H A DHTMLObjectElement.h123 template<typename T> inline const T& toElement(const FormAssociatedElement&);
124 template<typename T> inline const T* toElement(const FormAssociatedElement*);
127 template<> inline const HTMLObjectElement* toElement<HTMLObjectElement>(const FormAssociatedElement* element) function in namespace:blink
138 template<> inline const HTMLObjectElement& toElement<HTMLObjectElement>(const FormAssociatedElement& element) function in namespace:blink
/external/guava/guava/src/com/google/common/collect/
H A DAbstractSortedMultiset.java105 public SortedMultiset<E> subMultiset(E fromElement, BoundType fromBoundType, E toElement, argument
107 return tailMultiset(fromElement, fromBoundType).headMultiset(toElement, toBoundType);
H A DContiguousSet.java42 @Override public ContiguousSet<C> headSet(C toElement) { argument
43 return headSet(checkNotNull(toElement), false);
46 @Override ContiguousSet<C> headSet(C toElement, boolean inclusive) { argument
47 return headSetImpl(checkNotNull(toElement), inclusive);
50 @Override public ContiguousSet<C> subSet(C fromElement, C toElement) { argument
52 checkNotNull(toElement);
53 checkArgument(comparator().compare(fromElement, toElement) <= 0);
54 return subSet(fromElement, true, toElement, false);
57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, argument
60 checkNotNull(toElement);
76 headSetImpl(C toElement, boolean inclusive) argument
78 subSetImpl(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
[all...]
H A DForwardingSortedSet.java76 public SortedSet<E> headSet(E toElement) { argument
77 return delegate().headSet(toElement);
86 public SortedSet<E> subSet(E fromElement, E toElement) { argument
87 return delegate().subSet(fromElement, toElement);
163 @Beta protected SortedSet<E> standardSubSet(E fromElement, E toElement) { argument
164 return tailSet(fromElement).headSet(toElement);
H A DEmptyContiguousSet.java61 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { argument
66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
65 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DEmptyImmutableSortedSet.java105 ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive) { argument
111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
110 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DRegularImmutableSortedSet.java200 ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive) { argument
204 elements, checkNotNull(toElement), comparator(), FIRST_AFTER, NEXT_HIGHER);
207 elements, checkNotNull(toElement), comparator(), FIRST_PRESENT, NEXT_HIGHER);
214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
216 .headSetImpl(toElement, toInclusive);
213 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DSortedMultisets.java50 @Override public SortedSet<E> subSet(E fromElement, E toElement) { argument
51 return multiset().subMultiset(fromElement, BoundType.CLOSED, toElement,
55 @Override public SortedSet<E> headSet(E toElement) { argument
56 return multiset().headMultiset(toElement, BoundType.OPEN).elementSet();
121 @Override public SortedMultiset<E> headMultiset(E toElement, argument
123 return forwardMultiset().tailMultiset(toElement, boundType)
128 BoundType fromBoundType, E toElement, BoundType toBoundType) {
129 return forwardMultiset().subMultiset(toElement, toBoundType, fromElement,
127 subMultiset(E fromElement, BoundType fromBoundType, E toElement, BoundType toBoundType) argument
H A DStandardRowSortedTable.java96 public SortedSet<R> headSet(R toElement) { argument
97 checkNotNull(toElement);
99 sortedBackingMap().headMap(toElement), factory).rowKeySet();
103 public SortedSet<R> subSet(R fromElement, R toElement) { argument
105 checkNotNull(toElement);
107 sortedBackingMap().subMap(fromElement, toElement), factory)
H A DConstraints.java175 @Override public SortedSet<E> headSet(E toElement) { argument
176 return constrainedSortedSet(delegate.headSet(toElement), constraint);
178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { argument
180 delegate.subSet(fromElement, toElement), constraint);
H A DImmutableSortedSet.java592 * {@code toElement} greater than an earlier {@code toElement}. However, this
594 * original {@code toElement}.
597 public ImmutableSortedSet<E> headSet(E toElement) { argument
598 return headSet(toElement, false);
601 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { argument
602 return headSetImpl(checkNotNull(toElement), inclusive);
615 * original {@code toElement}, instead of throwing an exception, if passed a
616 * {@code toElement} greater than an earlier {@code toElement}
619 subSet(E fromElement, E toElement) argument
623 subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
655 headSetImpl(E toElement, boolean inclusive) argument
657 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
[all...]
H A DRegularContiguousSet.java45 /* @Override */ ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { argument
46 return range.intersection(Ranges.upTo(toElement, BoundType.forBoolean(inclusive)))
56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, argument
59 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
H A DSets.java850 public SortedSet<E> subSet(E fromElement, E toElement) { argument
851 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).subSet(fromElement, toElement),
856 public SortedSet<E> headSet(E toElement) { argument
857 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).headSet(toElement), predicate);
H A DAbstractMultimap.java684 public SortedSet<V> headSet(V toElement) { argument
687 getKey(), getSortedSetDelegate().headSet(toElement),
692 public SortedSet<V> subSet(V fromElement, V toElement) { argument
695 getKey(), getSortedSetDelegate().subSet(fromElement, toElement),
970 public SortedSet<K> headSet(K toElement) { argument
971 return new SortedKeySet(sortedMap().headMap(toElement));
980 public SortedSet<K> subSet(K fromElement, K toElement) { argument
981 return new SortedKeySet(sortedMap().subMap(fromElement, toElement));
H A DSynchronized.java260 public SortedSet<E> subSet(E fromElement, E toElement) { argument
262 return sortedSet(delegate().subSet(fromElement, toElement), mutex);
267 public SortedSet<E> headSet(E toElement) { argument
269 return sortedSet(delegate().headSet(toElement), mutex);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java59 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { argument
64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
63 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java43 /* @Override */ ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) { argument
44 return range.intersection(Ranges.upTo(toElement, BoundType.forBoolean(inclusive)))
54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, argument
57 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
H A DImmutableSortedSet.java296 public ImmutableSortedSet<E> headSet(E toElement) { argument
297 checkNotNull(toElement);
299 return unsafeDelegateSortedSet(sortedDelegate.headSet(toElement), true);
317 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { argument
318 checkNotNull(toElement);
320 E tmp = higher(toElement);
324 toElement = tmp;
326 return headSet(toElement);
333 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { argument
334 return subSet(fromElement, true, toElement, fals
337 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
[all...]
H A DSets.java838 public SortedSet<E> subSet(E fromElement, E toElement) { argument
839 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).subSet(fromElement, toElement),
844 public SortedSet<E> headSet(E toElement) { argument
845 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).headSet(toElement), predicate);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedSetTest.java100 @Override public SortedSet<T> subSet(T fromElement, T toElement) { argument
101 return standardSubSet(fromElement, toElement);
/external/smali/util/src/main/java/org/jf/util/
H A DArraySortedSet.java136 public SortedSet<T> subSet(T fromElement, T toElement) { argument
141 public SortedSet<T> headSet(T toElement) { argument
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DMouseEvent.cpp173 Node* MouseEvent::toElement() const function in class:blink::MouseEvent
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java118 @Override public SortedSet<E> headSet(E toElement) { argument
119 return headSet(toElement, false);
122 @Override public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
124 delegate.headSet(checkValid(toElement), inclusive));
172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
175 checkValid(toElement), toInclusive));
178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { argument
179 return subSet(fromElement, true, toElement, false);
171 subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.h643 template<typename T> inline T& toElement(Node& node) function in namespace:blink
648 template<typename T> inline T* toElement(Node* node) function in namespace:blink
653 template<typename T> inline const T& toElement(const Node& node) function in namespace:blink
658 template<typename T> inline const T* toElement(const Node* node) function in namespace:blink
663 template<typename T, typename U> inline T* toElement(const RefPtr<U>& node) { return toElement<T>(node.get()); } function in namespace:blink
667 return node->isElementNode() && toElement(node)->isDisabledFormControl();
673 return parent && parent->isElementNode() ? toElement(parent) : 0;
825 return node && node->isElementNode() && toElement(node)->shadow();

Completed in 3457 milliseconds

12