Lines Matching refs:Index
569 …virtual void SAL_CALL insertByIndex( sal_Int32 Index, const Any& Element ) throw( IllegalArgumentE…
570 …virtual void SAL_CALL removeByIndex( sal_Int32 Index ) throw( IndexOutOfBoundsException, WrappedTa…
573 …virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const Any& Element ) throw( IllegalArgument…
577 …virtual Any SAL_CALL getByIndex( sal_Int32 Index ) throw( IndexOutOfBoundsException, WrappedTarget…
638 void SAL_CALL SvUnoImageMap::insertByIndex( sal_Int32 Index, const Any& Element ) in insertByIndex() argument
643 if( NULL == pObject || Index > nCount ) in insertByIndex()
648 if( Index == nCount ) in insertByIndex()
653 for( sal_Int32 n = 0; n < Index; n++ ) in insertByIndex()
660 void SAL_CALL SvUnoImageMap::removeByIndex( sal_Int32 Index ) throw(IndexOutOfBoundsException, Wrap… in removeByIndex() argument
663 if( Index >= nCount ) in removeByIndex()
666 if( nCount - 1 == Index ) in removeByIndex()
674 for( sal_Int32 n = 0; n < Index; n++ ) in removeByIndex()
683 void SAL_CALL SvUnoImageMap::replaceByIndex( sal_Int32 Index, const Any& Element ) throw(IllegalArg… in replaceByIndex() argument
687 if( NULL == pObject || Index >= nCount ) in replaceByIndex()
691 for( sal_Int32 n = 0; n < Index; n++ ) in replaceByIndex()
705 Any SAL_CALL SvUnoImageMap::getByIndex( sal_Int32 Index ) throw(IndexOutOfBoundsException, WrappedT… in getByIndex() argument
708 if( Index >= nCount ) in getByIndex()
712 for( sal_Int32 n = 0; n < Index; n++ ) in getByIndex()