Home
last modified time | relevance | path

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

/NW4C-1.3.3/include/nw/lyt/
Dlyt_Pane.h927 __forceinline Pane* GetNextChild(const Pane* pChild) const in GetNextChild() argument
930 return const_cast<Pane*>(list.GetNext(pChild)); in GetNextChild()
968 void AppendChild(Pane* pChild);
983 void PrependChild(Pane* pChild);
1004 Pane* pChild);
1025 Pane* pChild);
1037 void RemoveChild(Pane* pChild);
/NW4C-1.3.3/sources/libraries/lyt/
Dlyt_Pane.cpp379 Pane::AppendChild(Pane* pChild) in AppendChild() argument
381 InsertChild(m_ChildList.GetEndIter(), pChild); in AppendChild()
385 Pane::PrependChild(Pane* pChild) in PrependChild() argument
387 InsertChild(m_ChildList.GetBeginIter(), pChild); in PrependChild()
393 Pane* pChild in InsertChild() argument
399 InsertChild(m_ChildList.GetIteratorFromPointer(pNext), pChild); in InsertChild()
405 Pane* pChild in InsertChild() argument
408 NW_NULL_ASSERT(pChild); in InsertChild()
409 NW_ASSERT(pChild->m_pParent == 0); in InsertChild()
411 m_ChildList.Insert(next, pChild); in InsertChild()
[all …]