Lines Matching refs:child
41 void operator() (TChild* child) in operator()
43 child->~TChild(); in operator()
46 m_Allocator->Free(child); in operator()
65 void operator() (TChild* child) in operator()
67 if (child) in operator()
69 child->SetParent(NULL); in operator()
202 bool Attach(TChild* child) in Attach() argument
204 if (child->GetParent() != 0) in Attach()
209 bool pushed = m_Children.push_back(child); in Attach()
212 child->SetParent(m_Parent); in Attach()
222 bool Detach(TChild* child) in Detach() argument
224 bool result = m_Children.erase_find(child); in Detach()
227 child->SetParent(NULL); in Detach()