Searched defs:nextSibling (Results 1 - 25 of 32) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DTreeWalker.cpp93 if (node->nextSibling()) {
94 node = node->nextSibling();
176 Node* TreeWalker::nextSibling(ScriptState* state) function in class:WebCore::TreeWalker
182 for (RefPtr<Node> sibling = node->nextSibling(); sibling; ) {
200 sibling = sibling->nextSibling();
266 while (Node* nextSibling = node->traverseNextSibling(root())) {
267 node = nextSibling;
H A DTreeWalker.h51 Node* nextSibling(ScriptState*);
61 Node* nextSibling() { return nextSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
H A DNode.h147 Node* nextSibling() const { return m_next; } function in class:WebCore::Node
/external/webkit/Source/WebCore/page/
H A DFrameTree.h49 Frame* nextSibling() const { return m_nextSibling.get(); } function in class:WebCore::FrameTree
/external/webkit/Source/WebCore/rendering/
H A DCounterNode.h60 CounterNode* nextSibling() const { return m_nextSibling; } function in class:WebCore::CounterNode
H A DRenderTable.cpp354 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
414 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
498 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
508 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
559 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
581 for (RenderObject* child = firstChild(); child; child = child->nextSibling())
674 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
692 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
705 next = current->nextSibling();
707 next = current->parent()->nextSibling();
782 RenderObject* nextSibling; local
[all...]
H A DRenderLayer.h168 RenderLayer* nextSibling() const { return m_next; } function in class:WebCore::RenderLayer
H A DRenderObject.h131 RenderObject* nextSibling() const { return m_next; } function in class:WebCore::RenderObject
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DOctnode.java197 public void generateFastOctnodeLinks(Octnode parent, Octnode nextSibling, int side){ argument
199 fastNode.next = nextSibling != null ? nextSibling.fastNode : null;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java143 * @param nextSibling the next sibling node.
145 public void setNextSibling(Node nextSibling) argument
147 m_nextSibling = nextSibling;
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp123 WebNode WebNode::nextSibling() const function in class:WebKit::WebNode
125 return WebNode(m_private->nextSibling());
H A DWebAccessibilityObject.cpp173 WebAccessibilityObject WebAccessibilityObject::nextSibling() const function in class:WebKit::WebAccessibilityObject
179 return WebAccessibilityObject(m_private->nextSibling());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.h76 WebFrameProxy* nextSibling() { return m_nextSibling; } function in class:WebKit::WebFrameProxy
/external/guava/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java116 Node<K, V> nextSibling; // the next node with the same key field in class:LinkedListMultimap.Node
185 * {@code nextSibling} element, or at the end of the list if {@code
186 * nextSibling} is null. Note: if {@code nextSibling} is specified, it MUST be
190 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
196 } else if (nextSibling == null) { // non-empty list, add to tail
203 keyTail.nextSibling = node;
208 } else { // non-empty list, insert before nextSibling
209 node.previous = nextSibling.previous;
210 node.previousSibling = nextSibling
189 addNode( @ullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedListMultimap.java112 Node<K, V> nextSibling; // the next node with the same key field in class:LinkedListMultimap.Node
181 * {@code nextSibling} element, or at the end of the list if {@code
182 * nextSibling} is null. Note: if {@code nextSibling} is specified, it MUST be
186 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
192 } else if (nextSibling == null) { // non-empty list, add to tail
199 keyTail.nextSibling = node;
204 } else { // non-empty list, insert before nextSibling
205 node.previous = nextSibling.previous;
206 node.previousSibling = nextSibling
185 addNode( @ullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java70 private NestedMapData nextSibling = null; field in class:NestedMapData
105 curr = curr.nextSibling;
116 sym.lastChild.nextSibling = data;
136 prevSibling.nextSibling = nextSibling;
138 parent.firstChild = nextSibling;
140 if (nextSibling != null) {
141 nextSibling.prevSibling = prevSibling;
272 return nextSibling == null;
276 return nextSibling;
[all...]
/external/mesa3d/src/talloc/
H A Dhieralloc.c19 struct hieralloc_header * nextSibling, * prevSibling; member in struct:hieralloc_header
52 assert(!header->nextSibling || header->nextSibling->prevSibling == header);
53 assert(!header->nextSibling || header->nextSibling->parent == header->parent);
54 assert(!header->prevSibling || header->prevSibling->nextSibling == header);
75 child = child->nextSibling;
86 assert(NULL == header->nextSibling);
94 // child = child->nextSibling;
98 header->nextSibling
[all...]
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.h76 ProfileNode* nextSibling() const { return m_nextSibling; } function in class:JSC::ProfileNode
77 void setNextSibling(ProfileNode* nextSibling) { m_nextSibling = nextSibling; } argument
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h72 SVGElementInstance* nextSibling() const { return m_nextSibling; } function in class:WebCore::SVGElementInstance
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h154 virtual HRESULT STDMETHODCALLTYPE nextSibling(
378 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMDocument
379 /* [retval][out] */ IDOMNode** result) { return DOMNode::nextSibling(result); }
609 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMElement
610 /* [retval][out] */ IDOMNode** result) { return DOMNode::nextSibling(result); }
H A DDOMCoreClasses.cpp185 HRESULT STDMETHODCALLTYPE DOMNode::nextSibling( function in class:DOMNode
193 *result = DOMNode::createInstance(m_node->nextSibling());
H A DDOMHTMLClasses.h234 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLDocument
235 /* [retval][out] */ IDOMNode **result) { return DOMDocument::nextSibling(result); }
508 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLElement
509 /* [retval][out] */ IDOMNode **result) { return DOMElement::nextSibling(result); }
767 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLFormElement
768 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::nextSibling(result); }
1072 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLSelectElement
1073 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::nextSibling(result); }
1396 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLOptionElement
1397 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::nextSibling(resul
1694 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLInputElement
2104 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLTextAreaElement
2429 virtual HRESULT STDMETHODCALLTYPE nextSibling( function in class:DOMHTMLIFrameElement
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp96 nextSibling():
619 \sa lastChild(), previousSibling(), nextSibling()
625 for (Node* child = m_element->firstChild(); child; child = child->nextSibling()) {
637 \sa firstChild(), previousSibling(), nextSibling()
657 QWebElement QWebElement::nextSibling() const function in class:QWebElement
661 for (Node* sib = m_element->nextSibling(); sib; sib = sib->nextSibling()) {
673 \sa firstChild(), nextSibling(), lastChild()
1148 if (!m_element->nextSibling())
1151 m_element->parentNode()->insertBefore(element.m_element, m_element->nextSibling(), exceptio
[all...]
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h283 @property(readonly, retain) DOMNode *nextSibling; variable
1216 - (DOMNode *)nextSibling;
/external/webkit/Source/WebCore/editing/
H A DApplyStyleCommand.cpp423 next = node->nextSibling();
472 if (before ? n->previousSibling() : n->nextSibling())
473 splitElement(parent, before ? n : n->nextSibling());
745 Node* sibling = node->nextSibling();
750 sibling = runEnd->nextSibling();
791 RefPtr<Node> nextSibling = node->nextSibling(); local
797 runStart = previousSibling ? previousSibling->nextSibling() : parent->firstChild();
799 runEnd = nextSibling ? nextSibling
1328 RefPtr<Node> nextSibling = element->nextSibling(); local
[all...]

Completed in 634 milliseconds

12