Lines Matching refs:nList
90 uno::Sequence< sal_Int16 > nList; in setValue() local
186 uno::Sequence< sal_Int16 > nList; in setValueEvent() local
187 m_xProps->getPropertyValue( SELECTEDITEMS ) >>= nList; in setValueEvent()
188 sal_Int16 nLength = static_cast<sal_Int16>( nList.getLength() ); in setValueEvent()
192 if( nList[i] == nIndex ) in setValueEvent()
200 nList[i] = nList[i + 1]; in setValueEvent()
202 nList.realloc( nLength - 1 ); in setValueEvent()
204 m_xProps->setPropertyValue( SELECTEDITEMS, uno::makeAny( nList ) ); in setValueEvent()
213 nList.realloc( nLength + 1 ); in setValueEvent()
214 nList[nLength] = nIndex; in setValueEvent()
218 nList.realloc( 1 ); in setValueEvent()
219 nList[0] = nIndex; in setValueEvent()
222 m_xProps->setPropertyValue( SELECTEDITEMS, uno::makeAny( nList ) ); in setValueEvent()
233 uno::Sequence< sal_Int16 > nList; in getValueEvent() local
234 …ops->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "SelectedItems" ) ) ) >>= nList; in getValueEvent()
235 sal_Int32 nLength = nList.getLength(); in getValueEvent()
240 if( nList[i] == nIndex ) in getValueEvent()