Home
last modified time | relevance | path

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

/NW4C-1.2.23/include/nw/ut/
Dut_LinkList.h58 Self* GetNext() const { return m_pNext; } in GetNext() function
137 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
174 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
210 iterator begin() { return iterator(m_BaseNode.GetNext()); } in begin()
211 const_iterator begin() const { return const_iterator(m_BaseNode.GetNext()); } in begin()
730 pointer GetNext(pointer p) in GetNext() function
734 node = node->GetNext(); in GetNext()
738 const_pointer GetNext(const_pointer p) const in GetNext() function
742 node = node->GetNext(); in GetNext()
Dut_ResArrayTypes.h58 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() function
59 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
Dut_ResArray.h49 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() function
50 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
71 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
127 static pointer GetNext(pointer ptr) { return ptr + 1; } in GetNext() function
128 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
146 static const_pointer GetNext(const_pointer ptr) { return ptr + 1; } in GetNext() function
/NW4C-1.2.23/sources/libraries/lyt/
Dlyt_Util.cpp177 PaneList::Iterator nextIt = PaneList::GetIteratorFromPointer(pPane->m_Link.GetNext()); in GetNextPane()
187 return PaneList::GetPointerFromNode(pPane->m_Link.GetNext()); in GetNextPane()
/NW4C-1.2.23/sources/libraries/ut/
Dut_HeapBase.cpp88 while ( NULL != ( pHeapBase = pHeap->GetNext() ) ) in DumpHeapList()
/NW4C-1.2.23/include/nw/lyt/
Dlyt_Pane.h930 return const_cast<Pane*>(list.GetNext(pChild)); in GetNextChild()