HomeSort by relevance Sort by last modified time
    Searched defs:nextSibling (Results 1 - 25 of 41) sorted by null

1 2

  /external/webkit/Source/WebCore/dom/
TreeWalker.cpp 93 if (node->nextSibling()) {
94 node = node->nextSibling();
176 Node* TreeWalker::nextSibling(ScriptState* state)
182 for (RefPtr<Node> sibling = node->nextSibling(); sibling; ) {
200 sibling = sibling->nextSibling();
266 while (Node* nextSibling = node->traverseNextSibling(root())) {
267 node = nextSibling;
TreeWalker.h 51 Node* nextSibling(ScriptState*);
61 Node* nextSibling() { return nextSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
Node.h 147 Node* nextSibling() const { return m_next; }
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMResult.java 100 * <p>In practice, <code>node</code> and <code>nextSibling</code> should be
106 * <p>Use <code>nextSibling</code> to specify the child node
108 * If <code>nextSibling</code> is not a sibling of <code>node</code>,
110 * If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>,
112 * If <code>nextSibling</code> is <code>null</code>,
119 * @param nextSibling The child node where the result nodes should be inserted before.
121 * @throws IllegalArgumentException If <code>nextSibling</code> is not a sibling of <code>node</code>.
122 * @throws IllegalArgumentException If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>.
126 public DOMResult(Node node, Node nextSibling) {
129 if (nextSibling != null)
    [all...]
  /external/webkit/Source/WebCore/page/
FrameTree.h 49 Frame* nextSibling() const { return m_nextSibling.get(); }
  /external/webkit/Source/WebCore/rendering/
CounterNode.h 60 CounterNode* nextSibling() const { return m_nextSibling; }
RenderLayer.h 190 RenderLayer* nextSibling() const { return m_next; }
    [all...]
RenderTable.cpp 353 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
413 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
497 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
507 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
558 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
580 for (RenderObject* child = firstChild(); child; child = child->nextSibling())
673 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
691 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
704 next = current->nextSibling();
706 next = current->parent()->nextSibling();
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java 133 Node nextSibling = getNextSibling();
134 if (nextSibling == null) {
138 short nodeType = nextSibling.getNodeType();
140 ? (TextImpl) nextSibling
  /external/webkit/Source/WebKit/chromium/src/
WebNode.cpp 123 WebNode WebNode::nextSibling() const
125 return WebNode(m_private->nextSibling());
WebAccessibilityObject.cpp 173 WebAccessibilityObject WebAccessibilityObject::nextSibling() const
179 return WebAccessibilityObject(m_private->nextSibling());
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileNode.h 76 ProfileNode* nextSibling() const { return m_nextSibling; }
77 void setNextSibling(ProfileNode* nextSibling) { m_nextSibling = nextSibling; }
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.h 154 virtual HRESULT STDMETHODCALLTYPE nextSibling(
378 virtual HRESULT STDMETHODCALLTYPE nextSibling(
379 /* [retval][out] */ IDOMNode** result) { return DOMNode::nextSibling(result); }
609 virtual HRESULT STDMETHODCALLTYPE nextSibling(
610 /* [retval][out] */ IDOMNode** result) { return DOMNode::nextSibling(result); }
    [all...]
DOMHTMLClasses.h 234 virtual HRESULT STDMETHODCALLTYPE nextSibling(
235 /* [retval][out] */ IDOMNode **result) { return DOMDocument::nextSibling(result); }
508 virtual HRESULT STDMETHODCALLTYPE nextSibling(
509 /* [retval][out] */ IDOMNode **result) { return DOMElement::nextSibling(result); }
    [all...]
DOMCoreClasses.cpp 185 HRESULT STDMETHODCALLTYPE DOMNode::nextSibling(
193 *result = DOMNode::createInstance(m_node->nextSibling());
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.h 76 WebFrameProxy* nextSibling() { return m_nextSibling; }
  /external/guava/src/com/google/common/collect/
LinkedListMultimap.java 110 Node<K, V> nextSibling; // the next node with the same key
179 * {@code nextSibling} element, or at the end of the list if {@code
180 * nextSibling} is null. Note: if {@code nextSibling} is specified, it MUST be
184 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
190 } else if (nextSibling == null) { // non-empty list, add to tail
197 keyTail.nextSibling = node;
202 } else { // non-empty list, insert before nextSibling
203 node.previous = nextSibling.previous;
204 node.previousSibling = nextSibling.previousSibling
    [all...]
  /external/mesa3d/src/talloc/
hieralloc.c 19 struct hieralloc_header * nextSibling, * prevSibling;
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 = parent->child
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 72 SVGElementInstance* nextSibling() const { return m_nextSibling; }
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 70 private NestedMapData nextSibling = null;
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/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 96 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
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(), exception)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerIdentityImpl.java 201 Node nextSibling = domResult.getNextSibling();
248 if (nextSibling != null)
249 domBuilder.setNextSibling(nextSibling);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 745 int nextSibling = _nextsib(index);
747 if (DTM.NULL == nextSibling)
749 else if (NOTPROCESSED == nextSibling)
752 ps.println("Next sibling: " + nextSibling);
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h 283 @property(readonly, retain) DOMNode *nextSibling;
    [all...]
  /external/webkit/Source/WebCore/editing/
ApplyStyleCommand.cpp 423 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()
    [all...]

Completed in 1588 milliseconds

1 2