Lines Matching refs:pList
334 List* pList = 0; in insertByName() local
336 pList = mrModel.GetDoc()->GetCustomShowList(sal_True); in insertByName()
339 if( NULL == pList) in insertByName()
369 for( SdCustomShow* pCompare = (SdCustomShow*)pList->First(); in insertByName()
371 pCompare = (SdCustomShow*)pList->Next() ) in insertByName()
377 pList->Insert(pShow); in insertByName()
389 List* pList = GetCustomShowList(); in removeByName() local
390 if(pList && pShow) in removeByName()
391 delete (SdCustomShow*)pList->Remove( pShow ); in removeByName()
433 List* pList = GetCustomShowList(); in getElementNames() local
434 const sal_uInt32 nCount = pList?pList->Count():0; in getElementNames()
442 const SdCustomShow* pShow = (const SdCustomShow*)pList->GetObject(nIdx); in getElementNames()
470 List* pList = GetCustomShowList(); in hasElements() local
471 return pList && pList->Count() > 0; in hasElements()
478 List* pList = GetCustomShowList(); in getSdCustomShow() local
479 const sal_uInt32 nCount = pList?pList->Count():0; in getSdCustomShow()
485 SdCustomShow* pShow = (SdCustomShow*)pList->GetObject(nIdx); in getSdCustomShow()