Home
last modified time | relevance | path

Searched refs:GetNext (Results 1 – 6 of 6) sorted by relevance

/NW4C-2.0.3/include/nw/ut/
Dut_LinkList.h60 Self* GetNext() const { return m_pNext; } in GetNext() function
139 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
176 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
212 iterator begin() { return iterator(m_BaseNode.GetNext()); } in begin()
213 const_iterator begin() const { return const_iterator(m_BaseNode.GetNext()); } in begin()
733 pointer GetNext(pointer p) in GetNext() function
737 node = node->GetNext(); in GetNext()
741 const_pointer GetNext(const_pointer p) const in GetNext() function
745 node = node->GetNext(); in GetNext()
Dut_ResArrayTypes.h60 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() function
61 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
Dut_ResArray.h51 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() function
52 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
73 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
129 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() function
130 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
148 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_Util.cpp180 PaneList::Iterator nextIt = PaneList::GetIteratorFromPointer(pPane->m_Link.GetNext()); in GetNextPane()
190 return PaneList::GetPointerFromNode(pPane->m_Link.GetNext()); in GetNextPane()
/NW4C-2.0.3/sources/libraries/ut/
Dut_HeapBase.cpp90 while ( NULL != ( pHeapBase = pHeap->GetNext() ) ) in DumpHeapList()
/NW4C-2.0.3/include/nw/lyt/
Dlyt_Pane.h932 return const_cast<Pane*>(list.GetNext(pChild)); in GetNextChild()