Lines Matching refs:nIndex

52 	virtual void SAL_CALL insertByIndex( sal_Int32 nIndex, const ::com::sun::star::uno::Any& aElement )
55 virtual void SAL_CALL removeByIndex( sal_Int32 nIndex )
60 …virtual void SAL_CALL replaceByIndex( sal_Int32 nIndex, const ::com::sun::star::uno::Any& aElement…
67 virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 nIndex )
100 void SAL_CALL IndexedPropertyValuesContainer::insertByIndex( sal_Int32 nIndex, const ::com::sun::st… in insertByIndex() argument
105 if ((nSize >= nIndex) && (nIndex >= 0)) in insertByIndex()
110 if (nSize == nIndex) in insertByIndex()
115 if ((nIndex * 2) < nSize) in insertByIndex()
119 while(i < nIndex) in insertByIndex()
129 while(i > nIndex) in insertByIndex()
142 void SAL_CALL IndexedPropertyValuesContainer::removeByIndex( sal_Int32 nIndex ) in removeByIndex() argument
147 if ((nIndex < nSize) && (nIndex >= 0)) in removeByIndex()
150 if ((nIndex * 2) < nSize) in removeByIndex()
154 while(i < nIndex) in removeByIndex()
164 while(i > nIndex) in removeByIndex()
177 void SAL_CALL IndexedPropertyValuesContainer::replaceByIndex( sal_Int32 nIndex, const ::com::sun::s… in replaceByIndex() argument
182 if ((nIndex < nSize) && (nIndex >= 0)) in replaceByIndex()
187 maProperties[nIndex] = aProps; in replaceByIndex()
200 ::com::sun::star::uno::Any SAL_CALL IndexedPropertyValuesContainer::getByIndex( sal_Int32 nIndex ) in getByIndex() argument
205 if (!((nIndex < nSize) && (nIndex >= 0))) in getByIndex()
209 aAny <<= maProperties[nIndex]; in getByIndex()