Lines Matching refs:Index
87 void SAL_CALL PropertySetContainer::insertByIndex( sal_Int32 Index, const ::com::sun::star::uno::An… in insertByIndex() argument
94 if ( nSize >= Index ) in insertByIndex()
100 if ( nSize == Index ) in insertByIndex()
105 aIter += Index; in insertByIndex()
120 void SAL_CALL PropertySetContainer::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
125 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in removeByIndex()
128 aIter += Index; in removeByIndex()
136 void SAL_CALL PropertySetContainer::replaceByIndex( sal_Int32 Index, const ::com::sun::star::uno::A… in replaceByIndex() argument
139 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in replaceByIndex()
145 m_aPropertySetVector[ Index ] = aPropertySetElement; in replaceByIndex()
167 Any SAL_CALL PropertySetContainer::getByIndex( sal_Int32 Index ) in getByIndex() argument
172 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in getByIndex()
176 a <<= m_aPropertySetVector[ Index ]; in getByIndex()