HomeSort by relevance Sort by last modified time
    Searched refs:toElement (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/guava/guava/src/com/google/common/collect/
ContiguousSet.java 42 @Override public ContiguousSet<C> headSet(C toElement) {
43 return headSet(checkNotNull(toElement), false);
46 @Override ContiguousSet<C> headSet(C toElement, boolean inclusive) {
47 return headSetImpl(checkNotNull(toElement), inclusive);
50 @Override public ContiguousSet<C> subSet(C fromElement, C toElement) {
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,
60 checkNotNull(toElement);
    [all...]
ForwardingSortedSet.java 76 public SortedSet<E> headSet(E toElement) {
77 return delegate().headSet(toElement);
86 public SortedSet<E> subSet(E fromElement, E toElement) {
87 return delegate().subSet(fromElement, toElement);
163 @Beta protected SortedSet<E> standardSubSet(E fromElement, E toElement) {
164 return tailSet(fromElement).headSet(toElement);
SortedMultisets.java 50 @Override public SortedSet<E> subSet(E fromElement, E toElement) {
51 return multiset().subMultiset(fromElement, BoundType.CLOSED, toElement,
55 @Override public SortedSet<E> headSet(E toElement) {
56 return multiset().headMultiset(toElement, BoundType.OPEN).elementSet();
121 @Override public SortedMultiset<E> headMultiset(E toElement,
123 return forwardMultiset().tailMultiset(toElement, boundType)
128 BoundType fromBoundType, E toElement, BoundType toBoundType) {
129 return forwardMultiset().subMultiset(toElement, toBoundType, fromElement,
StandardRowSortedTable.java 96 public SortedSet<R> headSet(R toElement) {
97 checkNotNull(toElement);
99 sortedBackingMap().headMap(toElement), factory).rowKeySet();
103 public SortedSet<R> subSet(R fromElement, R toElement) {
105 checkNotNull(toElement);
107 sortedBackingMap().subMap(fromElement, toElement), factory)
ImmutableSortedSet.java 592 * {@code toElement} greater than an earlier {@code toElement}. However, this
594 * original {@code toElement}.
597 public ImmutableSortedSet<E> headSet(E toElement) {
598 return headSet(toElement, false);
601 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
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}
    [all...]
  /libcore/luni/src/main/java/java/util/
NavigableSet.java 164 * {@code fromElement} to {@code toElement}. If {@code fromElement} and
165 * {@code toElement} are equal, the returned set is empty unless {@code
177 * @param toElement high endpoint of the returned set
181 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
183 * {@code toElement} cannot be compared to one another using this
187 * {@code toElement} cannot be compared to elements currently in
190 * {@code toElement} is null and this set does
193 * greater than {@code toElement}; or if this set itself
195 * {@code toElement} lies outside the bounds of the range.
198 E toElement, boolean toInclusive)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
UserActionElementSet.cpp 46 clearFlags(toElement(node), IsActiveFlag | InActiveChainFlag | IsHoveredFlag);
59 return hasFlags(toElement(node), flags);
66 return setFlags(toElement(node), flags);
73 return clearFlags(toElement(node), flags);
RenderTreeBuilder.cpp 48 Element* element = m_node->isElementNode() ? toElement(m_node) : 0;
64 Element* element = m_node->isElementNode() ? toElement(m_node) : 0;
99 m_style = toElement(m_node)->styleForRenderer();
110 Element* element = toElement(m_node);
DocumentMarkerControllerTest.cpp 94 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
110 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
124 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
137 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
151 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
165 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
179 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
193 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
ElementTraversal.h 131 return toElement(node);
141 return toElement(node);
152 return toElement<ElementType>(node);
171 return toElement<ElementType>(ancestor);
179 return &toElement<ElementType>(current);
190 return toElement<ElementType>(node);
210 return toElement<ElementType>(node);
230 return toElement<ElementType>(node);
250 return toElement<ElementType>(node);
260 return toElement<ElementType>(node)
    [all...]
NodeRenderingTraversal.cpp 43 if (toElement(renderer->node())->isInTopLayer())
89 return toElement(parent)->pseudoElement(AFTER);
108 return toElement(parent)->pseudoElement(BEFORE);
131 return toElement(parentNode)->pseudoElement(BEFORE);
139 const Element* currentElement = toElement(node);
184 return toElement(parentNode)->pseudoElement(AFTER);
192 const Element* currentElement = toElement(node);
NodeRenderingTraversal.h 71 return found && found->isElementNode() ? toElement(found) : 0;
ChildFrameDisconnector.cpp 49 ElementShadow* shadow = root.isElementNode() ? toElement(root).shadow() : 0;
84 if (ElementShadow* shadow = toElement(node).shadow()) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLabelElement.h 88 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)
99 template<> inline const HTMLLabelElement& toElement<HTMLLabelElement>(const FormAssociatedElement& element)
HTMLObjectElement.h 123 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)
138 template<> inline const HTMLObjectElement& toElement<HTMLObjectElement>(const FormAssociatedElement& element)
  /external/chromium_org/third_party/WebKit/Source/core/css/
SiblingTraversalStrategies.h 139 ASSERT(element == toElement(m_siblings[m_nth]));
151 ASSERT(element == toElement(m_siblings[m_nth]));
163 ASSERT(element == toElement(m_siblings[m_nth]));
166 if (m_siblings[i]->isElementNode() && toElement(m_siblings[i])->hasTagName(type))
175 ASSERT(element == toElement(m_siblings[m_nth]));
178 if (m_siblings[i]->isElementNode() && toElement(m_siblings[i])->hasTagName(type))
187 ASSERT(element == toElement(m_siblings[m_nth]));
200 ASSERT(element == toElement(m_siblings[m_nth]));
213 ASSERT(element == toElement(m_siblings[m_nth]));
217 if (m_siblings[i]->isElementNode() && toElement(m_siblings[i])->hasTagName(type)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSliderThumb.cpp 58 RenderTheme::theme().adjustSliderThumbSize(style(), toElement(node()));
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java 296 public ImmutableSortedSet<E> headSet(E toElement) {
297 checkNotNull(toElement);
299 return unsafeDelegateSortedSet(sortedDelegate.headSet(toElement), true);
317 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
318 checkNotNull(toElement);
320 E tmp = higher(toElement);
324 toElement = tmp;
326 return headSet(toElement);
333 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) {
334 return subSet(fromElement, true, toElement, false)
    [all...]
EmptyContiguousSet.java 59 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) {
64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
RegularContiguousSet.java 43 /* @Override */ ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) {
44 return range.intersection(Ranges.upTo(toElement, BoundType.forBoolean(inclusive)))
54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement,
57 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolverParentScope.h 55 m_resolver.popParentElement(toElement(parent()));
71 m_resolver.pushParentElement(toElement(parent()));
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SpinButtonElement.h 100 DEFINE_TYPE_CASTS(SpinButtonElement, Node, node, toElement(node)->isSpinButtonElement(), toElement(node).isSpinButtonElement());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 118 @Override public SortedSet<E> headSet(E toElement) {
119 return headSet(toElement, false);
122 @Override public NavigableSet<E> headSet(E toElement, boolean inclusive) {
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) {
179 return subSet(fromElement, true, toElement, false);
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 370 * {@code toElement} is null
375 E toElement,
379 toElement, toInclusive));
384 * @throws NullPointerException if {@code toElement} is null
387 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
388 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive));
403 * {@code toElement} is null
406 public NavigableSet<E> subSet(E fromElement, E toElement) {
407 return subSet(fromElement, true, toElement, false);
412 * @throws NullPointerException if {@code toElement} is nul
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeContainingElementCommand.cpp 60 parent = toElement(firstChild);

Completed in 1912 milliseconds

1 2 3 4 5 6 7 8 9