HomeSort by relevance Sort by last modified time
    Searched defs:nextChild (Results 1 - 6 of 6) sorted by null

  /external/webkit/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 60 Node* nextChild;
61 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild) {
62 nextChild = child->nextSibling();
DeleteSelectionCommand.cpp 336 RefPtr<Node> nextChild = child->nextSibling();
338 // Bail if nextChild is no longer node's child.
339 if (nextChild && nextChild->parentNode() != node)
341 child = nextChild;
    [all...]
ApplyStyleCommand.cpp     [all...]
  /external/webkit/WebCore/dom/
ContainerNode.cpp 104 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0;
159 child = nextChild.release();
213 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0;
271 child = nextChild.release();
457 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0;
495 child = nextChild.release();
  /external/webkit/WebCore/html/
HTMLElement.cpp 309 RefPtr<Node> nextChild;
310 for (RefPtr<Node> child = firstChild; child; child = nextChild) {
311 nextChild = child->nextSibling();
    [all...]
  /external/webkit/WebCore/rendering/
RenderBlock.cpp 420 RenderObject* nextChild = children()->firstChild();
421 while (nextChild) {
422 RenderObject* child = nextChild;
423 nextChild = child->nextSibling();
435 RenderObject* nextChild = children()->firstChild();
436 while (nextChild) {
437 RenderObject* child = nextChild;
438 nextChild = child->nextSibling();
    [all...]

Completed in 103 milliseconds