Home
last modified time | relevance | path

Searched refs:pChild (Results 1 – 2 of 2) sorted by relevance

/NW4C-2.0.3/include/nw/lyt/
Dlyt_Pane.h929 __forceinline Pane* GetNextChild(const Pane* pChild) const in GetNextChild() argument
932 return const_cast<Pane*>(list.GetNext(pChild)); in GetNextChild()
970 void AppendChild(Pane* pChild);
985 void PrependChild(Pane* pChild);
1006 Pane* pChild);
1027 Pane* pChild);
1039 void RemoveChild(Pane* pChild);
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_Pane.cpp381 Pane::AppendChild(Pane* pChild) in AppendChild() argument
383 InsertChild(m_ChildList.GetEndIter(), pChild); in AppendChild()
387 Pane::PrependChild(Pane* pChild) in PrependChild() argument
389 InsertChild(m_ChildList.GetBeginIter(), pChild); in PrependChild()
395 Pane* pChild in InsertChild() argument
401 InsertChild(m_ChildList.GetIteratorFromPointer(pNext), pChild); in InsertChild()
407 Pane* pChild in InsertChild() argument
410 NW_NULL_ASSERT(pChild); in InsertChild()
411 NW_ASSERT(pChild->m_pParent == 0); in InsertChild()
413 m_ChildList.Insert(next, pChild); in InsertChild()
[all …]