Lines Matching refs:pNext
71 return pItem && pItem->pNext ? pItem->pNext->pWidget : nullptr; in GetNextSiblingWidget()
85 while (pItem && pItem->pNext) in GetLastChildWidget()
86 pItem = pItem->pNext; in GetLastChildWidget()
112 pChild->pPrevious->pNext = pChild->pNext; in AppendWidget()
113 if (pChild->pNext) in AppendWidget()
114 pChild->pNext->pPrevious = pChild->pPrevious; in AppendWidget()
116 pItem->pParent->pChild = pItem->pNext; in AppendWidget()
118 pItem->pNext = nullptr; in AppendWidget()
122 if (!pChild->pNext) in AppendWidget()
125 pChild = pChild->pNext; in AppendWidget()
131 while (pChild->pNext) in AppendWidget()
132 pChild = pChild->pNext; in AppendWidget()
134 pChild->pNext = pItem; in AppendWidget()
140 pItem->pNext = nullptr; in AppendWidget()
192 pItem->pPrevious->pNext = pItem->pNext; in InsertWidget()
193 if (pItem->pNext) in InsertWidget()
194 pItem->pNext->pPrevious = pItem->pPrevious; in InsertWidget()
196 pItem->pParent->pChild = pItem->pNext; in InsertWidget()
207 pItem->pPrevious->pNext = pItem->pNext; in RemoveWidget()
208 if (pItem->pNext) in RemoveWidget()
209 pItem->pNext->pPrevious = pItem->pPrevious; in RemoveWidget()
211 pItem->pParent->pChild = pItem->pNext; in RemoveWidget()
215 Item* pNext = pChild->pNext; in RemoveWidget() local
217 pChild = pNext; in RemoveWidget()
248 pItem->pPrevious->pNext = pItem->pNext; in SetParent()
249 if (pItem->pNext) in SetParent()
250 pItem->pNext->pPrevious = pItem->pPrevious; in SetParent()
252 pItem->pParent->pChild = pItem->pNext; in SetParent()
254 pItem->pNext = nullptr; in SetParent()
313 CFWL_Widget* pNext = pRadioButton; in GetRadioButtonGroupHeader() local
314 if (pNext && (pNext->GetStyles() & FWL_WGTSTYLE_Group)) in GetRadioButtonGroupHeader()
315 return pNext; in GetRadioButtonGroupHeader()
606 pNext(nullptr), in Item()