Lines Matching refs:Index
93 void SAL_CALL SdXCustomPresentation::insertByIndex( sal_Int32 Index, const uno::Any& Element ) in insertByIndex() argument
101 if( Index < 0 || Index > (sal_Int32)( mpSdCustomShow ? mpSdCustomShow->Count() : 0 ) ) in insertByIndex()
120 mpSdCustomShow->Insert(pPage->GetSdrPage(), Index); in insertByIndex()
127 void SAL_CALL SdXCustomPresentation::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
138 getByIndex( Index ) >>= xPage; in removeByIndex()
153 void SAL_CALL SdXCustomPresentation::replaceByIndex( sal_Int32 Index, const uno::Any& Element ) in replaceByIndex() argument
156 removeByIndex( Index ); in replaceByIndex()
157 insertByIndex( Index, Element ); in replaceByIndex()
189 uno::Any SAL_CALL SdXCustomPresentation::getByIndex( sal_Int32 Index ) in getByIndex() argument
197 if( Index < 0 || Index >= (sal_Int32)mpSdCustomShow->Count() ) in getByIndex()
203 SdrPage* pPage = (SdrPage*)mpSdCustomShow->GetObject(Index); in getByIndex()