Home
last modified time | relevance | path

Searched refs:afterChild (Results 1 – 5 of 5) sorted by relevance

/external/skia/include/views/
DSkView.h318 virtual void afterChild(SkView* child, SkCanvas* canvas) {} in afterChild() function
/external/webkit/Source/WebCore/rendering/
DRenderObject.cpp308 … RenderObject* afterChild = beforeChild ? beforeChild->previousSibling() : children->lastChild(); in addChild() local
309 if (afterChild && afterChild->isAnonymous() && afterChild->isTable()) in addChild()
310 table = toRenderTable(afterChild); in addChild()
DRenderBlock.cpp768 RenderObject* afterChild = beforeChild ? beforeChild->previousSibling() : lastChild(); in addChildIgnoringAnonymousColumnBlocks() local
770 if (afterChild && afterChild->isAnonymousBlock()) { in addChildIgnoringAnonymousColumnBlocks()
771 afterChild->addChild(newChild); in addChildIgnoringAnonymousColumnBlocks()
/external/skia/src/views/
DSkView.cpp115 fParent->afterChild(this, canvas); in draw()
/external/skia/samplecode/
DSampleApp.cpp264 virtual void afterChild(SkView* child, SkCanvas* canvas);
913 void SampleWindow::afterChild(SkView* child, SkCanvas* canvas) { in afterChild() function in SampleWindow