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

1 2 3

  /external/guava/src/com/google/common/collect/
ForwardingSortedSet.java 48 public SortedSet<E> headSet(E toElement) {
49 return delegate().headSet(toElement);
56 public SortedSet<E> subSet(E fromElement, E toElement) {
57 return delegate().subSet(fromElement, toElement);
EmptyImmutableSortedSet.java 97 @Override ImmutableSortedSet<E> headSetImpl(E toElement) {
101 @Override ImmutableSortedSet<E> subSetImpl(E fromElement, E toElement) {
TreeMultiset.java 163 public SortedSet<E> headSet(E toElement) {
164 return new SortedMapBasedElementSet(sortedMap().headMap(toElement));
167 public SortedSet<E> subSet(E fromElement, E toElement) {
169 sortedMap().subMap(fromElement, toElement));
ImmutableSortedSet.java 594 * {@code toElement} greater than an earlier {@code toElement}. However, this
596 * original {@code toElement}.
598 public ImmutableSortedSet<E> headSet(E toElement) {
599 return headSetImpl(checkNotNull(toElement));
612 * original {@code toElement}, instead of throwing an exception, if passed a
613 * {@code toElement} greater than an earlier {@code toElement}.
615 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) {
617 checkNotNull(toElement);
    [all...]
RegularImmutableSortedSet.java 222 @Override ImmutableSortedSet<E> headSetImpl(E toElement) {
223 return createSubset(fromIndex, findSubsetIndex(toElement));
226 @Override ImmutableSortedSet<E> subSetImpl(E fromElement, E toElement) {
228 findSubsetIndex(fromElement), findSubsetIndex(toElement));
AbstractMultimap.java 664 public SortedSet<V> headSet(V toElement) {
667 getKey(), getSortedSetDelegate().headSet(toElement),
671 public SortedSet<V> subSet(V fromElement, V toElement) {
674 getKey(), getSortedSetDelegate().subSet(fromElement, toElement),
923 public SortedSet<K> headSet(K toElement) {
924 return new SortedKeySet(sortedMap().headMap(toElement));
931 public SortedSet<K> subSet(K fromElement, K toElement) {
932 return new SortedKeySet(sortedMap().subMap(fromElement, toElement));
    [all...]
Synchronized.java 315 public SortedSet<E> subSet(E fromElement, E toElement) {
317 return sortedSet(delegate().subSet(fromElement, toElement), mutex);
321 public SortedSet<E> headSet(E toElement) {
323 return sortedSet(delegate().headSet(toElement), mutex);
    [all...]
  /libcore/luni/src/main/java/java/util/
NavigableSet.java 165 * {@code fromElement} to {@code toElement}. If {@code fromElement} and
166 * {@code toElement} are equal, the returned set is empty unless {@code
178 * @param toElement high endpoint of the returned set
182 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
184 * {@code toElement} cannot be compared to one another using this
188 * {@code toElement} cannot be compared to elements currently in
191 * {@code toElement} is null and this set does
194 * greater than {@code toElement}; or if this set itself
196 * {@code toElement} lies outside the bounds of the range.
199 E toElement, boolean toInclusive)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 369 * {@code toElement} is null
374 E toElement,
378 toElement, toInclusive));
383 * @throws NullPointerException if {@code toElement} is null
386 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
387 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive));
402 * {@code toElement} is null
405 public NavigableSet<E> subSet(E fromElement, E toElement) {
406 return subSet(fromElement, true, toElement, false);
411 * @throws NullPointerException if {@code toElement} is nul
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
DetailsMarkerControl.cpp 66 ASSERT(!node || toElement(node)->hasTagName(summaryTag));
ProgressShadowElement.cpp 51 ASSERT(!node || progressTag == toElement(node)->tagQName());
MeterShadowElement.cpp 54 ASSERT(!node || meterTag == toElement(node)->tagQName());
  /external/collada/include/dae/
daeMetaAttribute.h 194 * Copies the value of this attribute from fromElement into toElement.
195 * @param toElement Pointer to a @c daeElement to copy this attribute to.
198 virtual void copy(daeElement* toElement, daeElement* fromElement);
245 * @param toElement Pointer to a @c daeElement to copy this attribute to.
248 virtual void copy(daeElement* toElement, daeElement* fromElement);
daeMetaElementAttribute.h 104 * @param toElement Pointer to a @c daeElement to copy this attribute to.
107 virtual void copy(daeElement* toElement, daeElement* fromElement);
169 * @param toElement Pointer to a @c daeElement to copy this attribute to.
172 virtual void copy(daeElement* toElement, daeElement* fromElement);
  /external/webkit/Source/WebCore/dom/
Element.h 421 inline Element* toElement(Node* node)
427 inline const Element* toElement(const Node* node)
434 void toElement(const Element*);
438 return isElementNode() && toElement(this)->hasTagName(name);
443 return isElementNode() && toElement(this)->hasLocalName(name);
448 return isElementNode() && toElement(this)->hasAttributes();
453 return isElementNode() ? toElement(this)->attributes() : 0;
459 return parent && parent->isElementNode() ? toElement(parent) : 0;
MouseEvent.idl 57 readonly attribute Node toElement;
MouseEvent.h 68 Node* toElement() const;
MouseEvent.cpp 116 Node* MouseEvent::toElement() const
  /external/webkit/Source/WebCore/html/
HTMLSummaryElement.cpp 61 Element* mayDetails = toElement(parentNodeForRenderingAndStyle());
  /external/webkit/Source/WebCore/rendering/
RenderInputSpeech.cpp 60 Element* element = object->node()->isElementNode() ? toElement(object->node()) : 0;
RenderCounter.cpp 60 parent = toElement(object->node());
67 parent = toElement(object->generatingNode());
106 parent = toElement(object->node());
113 parent = toElement(object->generatingNode());
139 return toElement(object->node())->parentElement();
142 return toElement(object->generatingNode());
162 self = toElement(object->generatingNode());
  /external/webkit/Source/WebCore/html/parser/
HTMLElementStack.h 58 Element* element() const { return toElement(m_node.get()); }
  /external/webkit/Source/WebCore/editing/
FormatBlockCommand.cpp 115 return commonAncestor->isElementNode() ? toElement(commonAncestor) : 0;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 410 Element* element = toElement(toJS(exec, nodeObject));
660 Element* element = toElement(toJS(exec, value));
726 Element* element = toElement(toJS(exec, nodeObject));
739 Element* element = toElement(toJS(exec, nodeObject));
  /external/webkit/Source/WebKit/mac/DOM/
WebDOMOperations.mm 69 return kit(toElement(toJS(toJS(context), value)));

Completed in 512 milliseconds

1 2 3