Searched refs:toElement (Results 26 - 50 of 58) sorted by relevance

123

/external/guava/guava/src/com/google/common/collect/
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 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 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/webkit/Source/WebCore/editing/
H A DFormatBlockCommand.cpp115 return commonAncestor->isElementNode() ? toElement(commonAncestor) : 0;
/external/webkit/Source/WebCore/html/parser/
H A DHTMLElementStack.h58 Element* element() const { return toElement(m_node.get()); }
H A DHTMLElementStack.cpp531 return toElement(m_rootNode);
H A DHTMLTreeBuilder.cpp610 processFakeEndTag(toElement(node)->tagQName());
1572 if (!m_tree.openElements()->contains(toElement(node)))
1575 m_tree.openElements()->popUntilPopped(toElement(node));
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp410 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/
H A DWebDOMOperations.mm69 return kit(toElement(toJS(toJS(context), value)));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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);
H A DSynchronized.java247 public SortedSet<E> subSet(E fromElement, E toElement) { argument
249 return sortedSet(delegate().subSet(fromElement, toElement), mutex);
254 public SortedSet<E> headSet(E toElement) { argument
256 return sortedSet(delegate().headSet(toElement), mutex);
/external/webkit/Source/WebCore/dom/
H A DMouseEvent.cpp116 Node* MouseEvent::toElement() const function in class:WebCore::MouseEvent
H A DNode.cpp551 return toElement(getFlag(IsShadowRootFlag) ? parent() : 0);
858 return node->isElementNode() ? toElement(node)->shadowRoot() : 0;
H A DElement.cpp1918 element = (parent && parent->isElementNode()) ? toElement(parent) : 0;
/external/webkit/Source/WebCore/rendering/
H A DRenderQuote.cpp229 element = toElement(node);
/external/webkit/Source/WebCore/html/
H A DHTMLElement.cpp818 if (node->isHTMLElement() && toElement(node)->hasAttribute(dirAttr)) {
860 AtomicString dirAttributeValue = toElement(node)->fastGetAttribute(dirAttr);
925 if (node->isElementNode() && toElement(node)->hasAttribute(dirAttr))
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dconcat-jquery-mootools-prototype.js2710 props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
2736 event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;
5345 case 'mouseout': related = event.relatedTarget || event.toElement;
5850 if (obj.toElement) return $.element(obj.toElement(doc), nocash);
7434 toElement: function(){
7482 element.parentNode.replaceChild(this.toElement(), element);
7487 $(element, true).appendChild(this.toElement());
7492 return Swiff.remote.apply(Swiff, [this.toElement()].extend(arguments));
9987 if (content && content.toElement) conten
[all...]
H A Dprototype-1.6.0.3.js1608 if (content && content.toElement) content = content.toElement();
1618 if (content && content.toElement) content = content.toElement();
1634 Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
1644 if (content && content.toElement) content = content.toElement();
2446 if (content && content.toElement) content = content.toElement();
2468 if (content && content.toElement) conten
[all...]
H A Djquery-1.3.2.js2710 props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
2736 event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;
H A Dmootools-1.2.2-core-nc.js969 case 'mouseout': related = event.relatedTarget || event.toElement;
1474 if (obj.toElement) return $.element(obj.toElement(doc), nocash);
3058 toElement: function(){
3106 element.parentNode.replaceChild(this.toElement(), element);
3111 $(element, true).appendChild(this.toElement());
3116 return Swiff.remote.apply(Swiff, [this.toElement()].extend(arguments));
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.cpp514 HRESULT STDMETHODCALLTYPE DOMMouseEvent::toElement( function in class:DOMMouseEvent
H A DDOMEventsClasses.h601 virtual HRESULT STDMETHODCALLTYPE toElement(
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMEvents.idl300 //readonly attribute Node toElement;
301 HRESULT toElement([out, retval] IDOMNode** result);
/external/webkit/Source/WebCore/page/
H A DFocusController.cpp581 Element* element = toElement(focusCandidate.focusableNode);
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMAgent.cpp420 return toElement(node);

Completed in 539 milliseconds

123