Lines Matching refs:fChildren
15 : fChildren(std::move(children)) { in Group()
16 for (const auto& child : fChildren) { in Group()
22 for (const auto& child : fChildren) { in ~Group()
28 for (const auto& child : fChildren) { in clear()
31 fChildren.clear(); in clear()
36 for (const auto& child : fChildren) { in addChild()
43 fChildren.push_back(std::move(node)); in addChild()
49 SkDEBUGCODE(const auto origSize = fChildren.size()); in removeChild()
50 fChildren.erase(std::remove(fChildren.begin(), fChildren.end(), node), fChildren.end()); in removeChild()
51 SkASSERT(fChildren.size() == origSize - 1); in removeChild()
61 const auto isolate = fChildren.size() > 1; in onRender()
64 for (const auto& child : fChildren) { in onRender()
74 for (const auto& child : fChildren) { in onRevalidate()