Lines Matching refs:_rIndex

1619 void SAL_CALL SbaXFormAdapter::insertByIndex(sal_Int32 _rIndex, const Any& Element) throw( ::com::s…  in insertByIndex()  argument
1621 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in insertByIndex()
1623 implInsert(Element, _rIndex); in insertByIndex()
1627 void SAL_CALL SbaXFormAdapter::removeByIndex(sal_Int32 _rIndex) throw( ::com::sun::star::lang::Inde… in removeByIndex() argument
1629 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in removeByIndex()
1632 Reference< ::com::sun::star::form::XFormComponent > xAffected = *(m_aChildren.begin() + _rIndex); in removeByIndex()
1635 m_aChildren.erase(m_aChildren.begin() + _rIndex); in removeByIndex()
1636 m_aChildNames.erase(m_aChildNames.begin() + _rIndex); in removeByIndex()
1657 void SAL_CALL SbaXFormAdapter::replaceByIndex(sal_Int32 _rIndex, const Any& Element) throw( ::com::… in replaceByIndex() argument
1659 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in replaceByIndex()
1691 Reference< ::com::sun::star::form::XFormComponent > xOld = *(m_aChildren.begin() + _rIndex); in replaceByIndex()
1694 *(m_aChildren.begin() + _rIndex) = xElement; in replaceByIndex()
1695 *(m_aChildNames.begin() + _rIndex) = sName; in replaceByIndex()
1709 aEvt.Accessor <<= (sal_Int32)_rIndex; in replaceByIndex()
1726 Any SAL_CALL SbaXFormAdapter::getByIndex(sal_Int32 _rIndex) throw( ::com::sun::star::lang::IndexOut… in getByIndex() argument
1728 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in getByIndex()
1731 … Reference< ::com::sun::star::form::XFormComponent > xElement = *(m_aChildren.begin() + _rIndex); in getByIndex()