Lines Matching refs:Index
263 Any SAL_CALL RootItemContainer::getByIndex( sal_Int32 Index ) in getByIndex() argument
267 if ( sal_Int32( m_aItemVector.size()) > Index ) in getByIndex()
268 return makeAny( m_aItemVector[Index] ); in getByIndex()
274 void SAL_CALL RootItemContainer::insertByIndex( sal_Int32 Index, const Any& aItem ) in insertByIndex() argument
281 if ( sal_Int32( m_aItemVector.size()) == Index ) in insertByIndex()
283 else if ( sal_Int32( m_aItemVector.size()) >Index ) in insertByIndex()
286 aIter += Index; in insertByIndex()
297 void SAL_CALL RootItemContainer::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
301 if ( (sal_Int32)m_aItemVector.size() > Index ) in removeByIndex()
304 aIter += Index; in removeByIndex()
311 void SAL_CALL RootItemContainer::replaceByIndex( sal_Int32 Index, const Any& aItem ) in replaceByIndex() argument
318 if ( sal_Int32( m_aItemVector.size()) > Index ) in replaceByIndex()
319 m_aItemVector[Index] = aSeq; in replaceByIndex()