Lines Matching refs:child
43 void operator() (TChild* child) in operator()
45 child->~TChild(); in operator()
48 m_Allocator->Free(child); in operator()
67 void operator() (TChild* child) in operator()
69 if (child) in operator()
71 child->SetParent(NULL); in operator()
206 bool Attach(TChild* child) in Attach() argument
208 if (child->GetParent() != 0) in Attach()
213 bool pushed = m_Children.push_back(child); in Attach()
216 child->SetParent(m_Parent); in Attach()
228 bool Detach(TChild* child) in Detach() argument
230 bool result = m_Children.erase_find(child); in Detach()
233 child->SetParent(NULL); in Detach()