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

12

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.h54 void setParent(ScopedStyleResolver* newParent) { m_parent = newParent; } argument
H A DScopedStyleTree.h78 void reparentNodes(const ScopedStyleResolver* oldParent, ScopedStyleResolver* newParent);
H A DScopedStyleTree.cpp198 inline void ScopedStyleTree::reparentNodes(const ScopedStyleResolver* oldParent, ScopedStyleResolver* newParent) argument
203 it->value->setParent(newParent);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.h155 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::ElementRecord* child);
156 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* child);
160 void insertAlreadyParsedChild(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child);
161 void takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent);
259 void append(PassRefPtrWillBeRawPtr<ContainerNode> newParent, PassRefPtrWillBeRawPtr<Node> newNextChild, const String& newString, WhitespaceMode newWhitespaceMode) argument
261 ASSERT(!parent || parent == newParent);
262 parent = newParent;
H A DHTMLConstructionSite.cpp694 void HTMLConstructionSite::reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::ElementRecord* child) argument
697 task.parent = newParent->node();
702 void HTMLConstructionSite::reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* child) argument
705 task.parent = newParent->node();
710 void HTMLConstructionSite::insertAlreadyParsedChild(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child) argument
712 if (newParent->causesFosterParenting()) {
718 task.parent = newParent->node();
723 void HTMLConstructionSite::takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent) argument
726 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.cpp63 FrameView* newParent = it->value; local
64 if (newParent != currentParent) {
67 if (newParent)
68 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.cpp1185 RefPtrWillBeRawPtr<Node> newParent = passNewParent; local
1186 if (!newParent) {
1193 switch (newParent->nodeType()) {
1198 exceptionState.throwDOMException(InvalidNodeTypeError, "The node provided is of type '" + newParent->nodeName() + "'.");
1208 // Raise a HierarchyRequestError if m_start.container() doesn't accept children like newParent.
1212 // need to accept newParent (or in the case of a comment, it logically "would" be inserted into the parent,
1222 if (!parentOfNewParent->childTypeAllowed(newParent->nodeType())) {
1223 exceptionState.throwDOMException(HierarchyRequestError, "The node provided is of type '" + newParent->nodeName() + "', which may not be inserted here.");
1227 if (newParent->contains(m_start.container())) {
1247 while (Node* n = newParent
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderCounter.cpp310 RefPtr<CounterNode> newParent = nullptr;
313 if (findPlaceForCounter(object, identifier, isReset, newParent, newPreviousSibling))
314 newParent->insertAfter(newNode.get(), newPreviousSibling.get(), identifier);
518 RefPtr<CounterNode> newParent = nullptr; local
521 findPlaceForCounter(renderer, it->key, node->hasResetType(), newParent, newPreviousSibling);
525 if (newParent == parent && newPreviousSibling == node->previousSibling())
529 if (newParent)
530 newParent->insertAfter(node.get(), newPreviousSibling.get(), it->key);
H A DInlineFlowBox.cpp1024 RenderObject* newParent = 0; local
1027 newParent = curr->renderer().parent();
1028 if (newParent == renderer())
1029 newParent = 0;
1033 if (newParent != culledParent) {
1034 if (!newParent || !newParent->isDescendantOf(culledParent)) {
1035 while (culledParent && culledParent != renderer() && culledParent != newParent) {
1041 culledParent = newParent;
H A DRenderObject.cpp483 void RenderObject::moveLayers(RenderLayer* oldParent, RenderLayer* newParent) argument
485 if (!newParent)
493 newParent->addChild(layer);
498 curr->moveLayers(oldParent, newParent);
H A DRenderObject.h199 void moveLayers(RenderLayer* oldParent, RenderLayer* newParent);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DBookmarksBridge.java68 * @param newParent The parent after the move.
72 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex);
235 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) {
237 observer.bookmarkNodeMoved(oldParent, oldIndex, newParent, newIndex);
71 bookmarkNodeMoved( BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) argument
234 bookmarkNodeMoved( BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) argument
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_controller.h380 newParent:(const BookmarkNode*)newParent newIndex:(int)newIndex;
/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.cpp397 RefPtrWillBeRawPtr<Element> newParent = prpNewParent; local
404 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 ...

Completed in 3585 milliseconds

12