Lines Matching refs:i_nIndex
1790 const ListItem& getItem( const sal_Int32 i_nIndex ) const in getItem()
1792 if ( ( i_nIndex < 0 ) || ( i_nIndex >= sal_Int32( m_aListItems.size() ) ) ) in getItem()
1794 return m_aListItems[ i_nIndex ]; in getItem()
1797 ListItem& getItem( const sal_Int32 i_nIndex ) in getItem()
1799 …ast< ListItem& >( static_cast< const UnoControlListBoxModel_Data* >( this )->getItem( i_nIndex ) ); in getItem()
1802 ListItem& insertItem( const sal_Int32 i_nIndex ) in insertItem()
1804 if ( ( i_nIndex < 0 ) || ( i_nIndex > sal_Int32( m_aListItems.size() ) ) ) in insertItem()
1806 return *m_aListItems.insert( m_aListItems.begin() + i_nIndex, ListItem() ); in insertItem()
1826 void removeItem( const sal_Int32 i_nIndex ) in removeItem()
1828 if ( ( i_nIndex < 0 ) || ( i_nIndex >= sal_Int32( m_aListItems.size() ) ) ) in removeItem()
1830 m_aListItems.erase( m_aListItems.begin() + i_nIndex ); in removeItem()