Home
last modified time | relevance | path

Searched refs:oldParent (Results 1 – 12 of 12) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_bar_bridge_unittest.mm55 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
61 parent:(const BookmarkNode*)oldParent index:(int)index {
81 parent:(const BookmarkNode*)oldParent index:(int)index {
Dbookmark_bar_controller.h361 parent:(const BookmarkNode*)oldParent index:(int)index;
365 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
368 parent:(const BookmarkNode*)oldParent index:(int)index;
Dbookmark_editor_controller_unittest.mm351 const BookmarkNode* oldParent = bookmark_bb_3_->parent();
356 ASSERT_EQ(newParent, oldParent);
362 const BookmarkNode* oldParent = bookmark_bb_3_->parent();
367 ASSERT_EQ(newParent, oldParent);
Dbookmark_bar_bridge.mm41 oldParent:old_parent oldIndex:old_index
Dbookmark_bubble_controller.mm335 const BookmarkNode* oldParent = node_->parent();
345 if (oldParent != newParent) {
Dbookmark_bar_controller.mm2080 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
2084 [self controllerForNode:oldParent];
2102 parent:(const BookmarkNode*)oldParent index:(int)index {
2109 [self controllerForNode:oldParent];
/external/webkit/Source/WebCore/page/
DFrameTree.cpp68 Frame* oldParent = child->tree()->parent(); in transferChild() local
69 if (oldParent == m_thisFrame) in transferChild()
72 if (oldParent) in transferChild()
73 oldParent->tree()->removeChild(child.get()); in transferChild()
/external/webkit/Source/WebCore/dom/
DContainerNode.cpp79 void ContainerNode::takeAllChildrenFrom(ContainerNode* oldParent) in takeAllChildrenFrom() argument
82 collectNodes(oldParent, children); in takeAllChildrenFrom()
83 oldParent->removeAllChildren(); in takeAllChildrenFrom()
141 if (ContainerNode* oldParent = child->parentNode()) in insertBefore() local
142 oldParent->removeChild(child, ec); in insertBefore()
293 if (ContainerNode* oldParent = child->parentNode()) in replaceChild() local
294 oldParent->removeChild(child.get(), ec); in replaceChild()
597 if (ContainerNode* oldParent = child->parentNode()) { in appendChild() local
598 oldParent->removeChild(child, ec); in appendChild()
/external/webkit/Source/WebCore/rendering/
DRenderObject.cpp480 void RenderObject::moveLayers(RenderLayer* oldParent, RenderLayer* newParent) in moveLayers() argument
487 ASSERT(oldParent == layer->parent()); in moveLayers()
488 if (oldParent) in moveLayers()
489 oldParent->removeChild(layer); in moveLayers()
495 curr->moveLayers(oldParent, newParent); in moveLayers()
DRenderObject.h176 void moveLayers(RenderLayer* oldParent, RenderLayer* newParent);
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py131 oldParent = self.parent
142 oldParent.insert(myIndex, replaceWith)
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1618989 Assert if moveLayers() is called with an oldParent that is not the