Searched refs:newParent (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.h163 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::ElementRecord* child);
164 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* child);
168 void insertAlreadyParsedChild(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child);
169 void takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent);
267 void append(PassRefPtrWillBeRawPtr<ContainerNode> newParent, PassRefPtrWillBeRawPtr<Node> newNextChild, const String& newString, WhitespaceMode newWhitespaceMode) argument
269 ASSERT(!parent || parent == newParent);
270 parent = newParent;
H A DHTMLConstructionSite.cpp700 void HTMLConstructionSite::reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::ElementRecord* child) argument
703 task.parent = newParent->node();
708 void HTMLConstructionSite::reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* child) argument
711 task.parent = newParent->node();
716 void HTMLConstructionSite::insertAlreadyParsedChild(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child) argument
718 if (newParent->causesFosterParenting()) {
724 task.parent = newParent->node();
729 void HTMLConstructionSite::takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent) argument
732 task.parent = newParent->node();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNodeTest.cpp173 RefPtr<TestTree> newParent = TestTree::create(); local
177 newParent->takeChildrenFrom(trio.root.get());
180 EXPECT_TRUE(newParent->hasChildren());
181 EXPECT_EQ(trio.firstChild.get(), newParent->firstChild());
182 EXPECT_EQ(trio.middleChild.get(), newParent->firstChild()->next());
183 EXPECT_EQ(trio.lastChild.get(), newParent->lastChild());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFrameOwnerElement.cpp69 FrameView* newParent = it->value; local
70 if (newParent != currentParent) {
73 if (newParent)
74 newParent->addChild(child);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.idl57 [RaisesException, CustomElementCallbacks] void surroundContents(Node newParent);
H A DRange.cpp1286 RefPtrWillBeRawPtr<Node> newParent = passNewParent; local
1287 if (!newParent) {
1306 switch (newParent->nodeType()) {
1311 exceptionState.throwDOMException(InvalidNodeTypeError, "The node provided is of type '" + newParent->nodeName() + "'.");
1321 // Raise a HierarchyRequestError if m_start.container() doesn't accept children like newParent.
1325 // need to accept newParent (or in the case of a comment, it logically "would" be inserted into the parent,
1335 if (!parentOfNewParent->childTypeAllowed(newParent->nodeType())) {
1336 exceptionState.throwDOMException(HierarchyRequestError, "The node provided is of type '" + newParent->nodeName() + "', which may not be inserted here.");
1340 if (newParent->contains(m_start.container())) {
1348 while (Node* n = newParent
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderCounter.cpp309 RefPtr<CounterNode> newParent = nullptr;
312 if (findPlaceForCounter(object, identifier, isReset, newParent, newPreviousSibling))
313 newParent->insertAfter(newNode.get(), newPreviousSibling.get(), identifier);
522 RefPtr<CounterNode> newParent = nullptr; local
525 findPlaceForCounter(renderer, it->key, node->hasResetType(), newParent, newPreviousSibling);
529 if (newParent == parent && newPreviousSibling == node->previousSibling())
533 if (newParent)
534 newParent->insertAfter(node.get(), newPreviousSibling.get(), it->key);
H A DInlineFlowBox.cpp1036 RenderObject* newParent = 0; local
1039 newParent = curr->renderer().parent();
1040 if (newParent == renderer())
1041 newParent = 0;
1045 if (newParent != culledParent) {
1046 if (!newParent || !newParent->isDescendantOf(culledParent)) {
1047 while (culledParent && culledParent != renderer() && culledParent != newParent) {
1053 culledParent = newParent;
H A DRenderObject.cpp520 void RenderObject::moveLayers(RenderLayer* oldParent, RenderLayer* newParent) argument
522 if (!newParent)
530 newParent->addChild(layer);
535 curr->moveLayers(oldParent, newParent);
H A DRenderObject.h199 void moveLayers(RenderLayer* oldParent, RenderLayer* newParent);
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_controller.h380 newParent:(const BookmarkNode*)newParent newIndex:(int)newIndex;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DBookmarksBridge.java65 * @param newParent The parent after the move.
69 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) {
514 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) {
518 observer.bookmarkNodeMoved(oldParent, oldIndex, newParent, newIndex);
68 bookmarkNodeMoved( BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) argument
513 bookmarkNodeMoved( BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelinePresentationModel.js131 * @param {!WebInspector.TimelinePresentationModel.Record} newParent
135 _findCoalescedParent: function(record, newParent, bucket)
139 var lastRecord = bucket ? this._coalescingBuckets[bucket] : newParent._presentationChildren.peekLast();
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.cpp403 RefPtrWillBeRawPtr<Element> newParent = prpNewParent; local
410 appendNode(nodesToRemove[i], newParent);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.databinding_1.4.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 4898 milliseconds