Lines Matching refs:pList

295 	SvTreeEntryList* pList = pParent->pChilds;  in IsChild()  local
296 if ( !pList ) in IsChild()
298 SvListEntry* pActualChild = (SvListEntry*)(pList->First()); in IsChild()
307 pActualChild = (SvListEntry*)(pList->Next()); in IsChild()
1136 SvTreeEntryList* pList = pEntry->pParent->pChilds; in NextSibling() local
1140 pEntry = (SvListEntry*)(pList->GetObject( nPos )); in NextSibling()
1150 SvTreeEntryList* pList = pEntry->pParent->pChilds; in PrevSibling() local
1156 pEntry = (SvListEntry*)(pList->GetObject( nPos )); in PrevSibling()
1250 SvTreeEntryList* pList = pParent->pChilds; in Insert() local
1251 if ( !pList ) in Insert()
1254 pList = new SvTreeEntryList; in Insert()
1255 pParent->pChilds = pList; in Insert()
1264 pList->Insert( pEntry, nPos ); in Insert()
1266 if( nPos != LIST_APPEND && (nPos != (pList->Count()-1)) ) in Insert()
1267 SetListPositions( pList ); in Insert()
1269 pEntry->nListPos = pList->Count()-1; in Insert()
1455 SvTreeEntryList* pList = pParent->pChilds; in Remove() local
1456 DBG_ASSERT(pList,"Remove:No Childlist"); in Remove()
1462 bLastEntry = (nListPos == (pList->Count()-1) ) ? sal_True : sal_False; in Remove()
1463 pList->Remove( nListPos ); in Remove()
1467 pList->Remove( (void*) pEntry ); in Remove()
1474 if ( pList->Count() == 0 ) in Remove()
1477 delete pList; in Remove()
1482 SetListPositions( pList ); in Remove()
1577 void SvTreeList::SetListPositions( SvTreeEntryList* pList ) in SetListPositions() argument
1579 if( pList->Count() ) in SetListPositions()
1581 SvListEntry* pEntry = (SvListEntry*)(pList->GetObject(0)); in SetListPositions()
1614 void lcl_CheckList( SvTreeEntryList* pList ) in lcl_CheckList() argument
1616 SvListEntry* pEntry = (SvListEntry*)(pList->First()); in lcl_CheckList()
1621 pEntry = (SvListEntry*)(pList->Next()); in lcl_CheckList()