/external/webkit/Source/WebCore/editing/ |
ReplaceNodeWithSpanCommand.cpp | 59 RefPtr<Node> nextChild; 60 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild.get()) { 61 nextChild = child->nextSibling();
|
DeleteSelectionCommand.cpp | 361 RefPtr<Node> nextChild = child->nextSibling(); 363 // Bail if nextChild is no longer node's child. 364 if (nextChild && nextChild->parentNode() != node) 366 child = nextChild; [all...] |
ApplyStyleCommand.cpp | [all...] |
/external/webkit/Source/WebCore/dom/ |
ContainerNode.cpp | 189 void ContainerNode::insertBeforeCommon(Node* nextChild, Node* newChild) 197 Node* prev = nextChild->previousSibling(); 199 nextChild->setPreviousSibling(newChild); 201 ASSERT(m_firstChild != nextChild); 202 ASSERT(prev->nextSibling() == nextChild); 205 ASSERT(m_firstChild == nextChild); 210 newChild->setNextSibling(nextChild); 214 void ContainerNode::parserInsertBefore(PassRefPtr<Node> newChild, Node* nextChild) 217 ASSERT(nextChild); 218 ASSERT(nextChild->parentNode() == this) [all...] |
ContainerNode.h | 111 void removeBetween(Node* previousChild, Node* nextChild, Node* oldChild); 112 void insertBeforeCommon(Node* nextChild, Node* oldChild);
|
Element.cpp | 168 RefPtr<Node> nextChild; 169 for (RefPtr<Node> child = firstChild; child; child = nextChild) { 170 nextChild = child->nextSibling(); [all...] |
/external/webkit/Source/WebCore/html/parser/ |
HTMLConstructionSite.cpp | 119 if (site.nextChild) 120 site.parent->parserInsertBefore(child, site.nextChild); 336 site.nextChild = 0; 345 Node* previousChild = site.nextChild ? site.nextChild->previousSibling() : site.parent->lastChild(); 475 site.nextChild = lastTableElement; 479 site.nextChild = 0; 484 site.nextChild = 0;
|
HTMLConstructionSite.h | 119 Node* nextChild;
|
/external/webkit/Source/WebCore/platform/gtk/ |
PopupMenuGtk.cpp | 203 if (GList* nextChild = g_list_next(currentChild)) 204 currentChild = nextChild;
|
/external/webkit/Source/WebCore/inspector/front-end/ |
treeoutline.js | 104 var nextChild = this.children[index]; 105 if (nextChild) { 106 nextChild.previousSibling = child; 107 child.nextSibling = nextChild;
|
DataGrid.js | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/ |
ResourceHelper.java | 401 Node nextChild = lastElement != null ? lastElement.getNextSibling() : null; 403 root.insertBefore(indentNode, nextChild); 415 root.insertBefore(element, nextChild);
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
BeautifulSoup.py | 230 nextChild = self.contents[position] 231 newChild.nextSibling = nextChild 234 newChildsLastElement.next = nextChild [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RelativeLayoutConversionHelper.java | 552 Element nextChild = children.get(index + 1); 553 String nextId = mRefactoring.ensureHasId(mRootEdit, nextChild, null); [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderBlock.cpp | [all...] |
/prebuilt/common/tradefed/ |
tradefed-prebuilt.jar | |