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

1 2 3 4 5 6 7 8 91011>>

  /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/html/
HTMLTableRowsCollection.cpp 62 for (child = previous->nextSibling(); child; child = child->nextSibling()) {
72 child = previous->parentNode()->nextSibling();
73 for (; child; child = child->nextSibling()) {
75 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
86 child = previous->nextSibling();
88 child = previous->parentNode()->nextSibling();
89 for (; child; child = child->nextSibling()) {
93 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
104 child = previous->parentNode()->nextSibling();
    [all...]
HTMLTableRowElement.cpp 74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
85 for (Node* row = section->firstChild(); row; row = row->nextSibling()) {
95 for (Node *row = foot->firstChild(); row; row = row->nextSibling()) {
  /external/webkit/Source/WebCore/svg/
SVGElementInstanceList.cpp 40 for (SVGElementInstance* instance = m_rootInstance->firstChild(); instance; instance = instance->nextSibling())
50 instance = instance->nextSibling();
  /external/webkit/Source/WebCore/dom/
ShadowRoot.cpp 45 for (Node* n = firstChild(); n; n = n->nextSibling())
TreeWalker.h 51 Node* nextSibling(ScriptState*);
61 Node* nextSibling() { return nextSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
ChildNodeList.cpp 41 for (Node* n = m_rootNode->firstChild(); n; n = n->nextSibling())
81 n = n->nextSibling();
TreeWalker.idl 38 [CallWith=ScriptState] Node nextSibling();
Text.cpp 68 parentNode()->insertBefore(newText.get(), nextSibling(), ec);
101 while ((n = n->nextSibling())) {
120 Node* onePastEndText = endText->nextSibling();
122 for (const Node* n = startText; n != onePastEndText; n = n->nextSibling()) {
134 for (const Node* n = startText; n != onePastEndText; n = n->nextSibling()) {
161 n = nodeToRemove->nextSibling();
166 Node* onePastEndText = endText->nextSibling();
167 for (RefPtr<Node> n = nextSibling(); n && n != onePastEndText && n->isTextNode() && n->parentNode() == parent;) {
169 n = nodeToRemove->nextSibling();
230 first = first->nextSibling();
    [all...]
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;
ContainerNodeAlgorithms.h 54 next = n->nextSibling();
121 next = n->nextSibling();
131 // Reuse the nextSibling pointer for this purpose.
  /external/webkit/Source/WebCore/editing/
JoinTextNodesCommand.cpp 38 ASSERT(m_text1->nextSibling() == m_text2);
45 if (m_text1->nextSibling() != m_text2)
MergeIdenticalElementsCommand.cpp 40 ASSERT(m_element1->nextSibling() == m_element2);
45 if (m_element1->nextSibling() != m_element2 || !m_element1->rendererIsEditable() || !m_element2->rendererIsEditable())
53 for (Node* child = m_element1->firstChild(); child; child = child->nextSibling())
81 for (Node* child = m_element2->firstChild(); child && child != atChild; child = child->nextSibling())
RemoveNodePreservingChildrenCommand.cpp 44 for (Node* child = m_node->firstChild(); child; child = child->nextSibling())
WrapContentsInDummySpanCommand.cpp 44 for (Node* child = m_element->firstChild(); child; child = child->nextSibling())
71 for (Node* child = m_dummySpan->firstChild(); child; child = child->nextSibling())
BreakBlockquoteCommand.cpp 150 listChildNode = listChildNode->nextSibling();
162 Node *next = moveNode->nextSibling();
178 moveNode = ancestor->nextSibling();
180 Node *next = moveNode->nextSibling();
RemoveNodeCommand.cpp 49 m_refChild = m_node->nextSibling();
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRow.cpp 47 for (RenderObject* current = firstChild(); current; current = current->nextSibling()) {
75 for (RenderObject* current = firstChild(); current; current = current->nextSibling()) {
106 for (RenderObject* current = firstChild(); current; current = current->nextSibling()) {
  /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
traversal-skip-most.js 16 debug("<br>Testing nextSibling")
19 shouldBe("walker.nextSibling(); walker.currentNode.id", "'B3'");
  /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/mac/Misc/
MailQuirksUserScript.js 35 for (var child = parent.firstChild; child != stopAt; child = child.nextSibling)
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 57 lastChild.nextSibling = child;
61 child.nextSibling = null;
98 previousChild.nextSibling = child;
107 child.nextSibling = nextChild;
109 child.nextSibling = null;
151 else if (child.nextSibling)
152 child.nextSibling.select();
158 child.previousSibling.nextSibling = child.nextSibling;
159 if (child.nextSibling)
    [all...]
TimelineGrid.js 117 divider = divider.nextSibling;
118 dividerLabelBar = dividerLabelBar.nextSibling;
123 var nextDivider = divider.nextSibling;
128 var nextDivider = dividerLabelBar.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/LayoutTests/dom/xhtml/level3/core/
canonicalform08.js 131 node = node.nextSibling;
140 node = node.nextSibling;
145 node = node.nextSibling;
154 node = node.nextSibling;
162 node = node.nextSibling;
171 node = node.nextSibling;
176 node = node.nextSibling;
185 node = node.nextSibling;
190 node = node.nextSibling;

Completed in 596 milliseconds

1 2 3 4 5 6 7 8 91011>>