Home
last modified time | relevance | path

Searched refs:mxIndexAccess (Results 1 – 5 of 5) sorted by relevance

/trunk/main/vbahelper/source/vbahelper/
H A Dcollectionbase.cxx194 if( mxIndexAccess.is() ) in getCount()
195 return mxIndexAccess->getCount(); in getCount()
213 if( mxIndexAccess.is() ) in hasElements()
214 return mxIndexAccess->hasElements(); in hasElements()
232 mxIndexAccess.set( rxElementAccess, uno::UNO_QUERY ); in initContainer()
267 if( mxIndexAccess.is() ) in getItemByIndex()
269 if( (1 <= nIndex) && (nIndex <= mxIndexAccess->getCount()) ) in getItemByIndex()
271 … return createCollectionItem( mxIndexAccess->getByIndex( nIndex - 1 ), uno::Any( nIndex ) ); in getItemByIndex()
294 if( mxIndexAccess.is() ) in getItemByName()
296 for( sal_Int32 nIndex = 0, nSize = mxIndexAccess->getCount(); nIndex < nSize; ++nIndex ) in getItemByName()
[all …]
/trunk/main/sw/source/ui/vba/
H A Dvbabookmarks.cxx58 uno::Reference< container::XIndexAccess > mxIndexAccess; member in BookmarkCollectionHelper
61 …ainer::XIndexAccess >& xIndexAccess ) throw (uno::RuntimeException) : mxIndexAccess( xIndexAccess ) in BookmarkCollectionHelper()
63 mxNameAccess.set( mxIndexAccess, uno::UNO_QUERY_THROW ); in BookmarkCollectionHelper()
66 …e SAL_CALL getElementType( ) throw (uno::RuntimeException) { return mxIndexAccess->getElementTyp… in getElementType()
67 …virtual ::sal_Bool SAL_CALL hasElements( ) throw (uno::RuntimeException) { return mxIndexAccess->… in hasElements()
88 for( sal_Int32 nIndex = 0; nIndex < mxIndexAccess->getCount(); nIndex++ ) in hasByName()
90 …uno::Reference< container::XNamed > xNamed( mxIndexAccess->getByIndex( nIndex ), uno::UNO_QUERY_TH… in hasByName()
104 return mxIndexAccess->getCount(); in getCount()
108 return mxIndexAccess->getByIndex( Index ); in getByIndex()
H A Dvbatables.cxx57 uno::Reference< container::XIndexAccess > mxIndexAccess; member in TableEnumerationImpl
60 … mxParent( xParent ), mxContext( xContext ), mxDocument( xDocument ), mxIndexAccess( xIndexAccess … in TableEnumerationImpl()
65 return ( mnCurIndex < mxIndexAccess->getCount() ); in hasMoreElements()
71 …return lcl_createTable( mxParent, mxContext, mxDocument, mxIndexAccess->getByIndex( mnCurIndex++ )… in nextElement()
/trunk/main/vbahelper/inc/vbahelper/
H A Dvbacollectionimpl.hxx63 mxIndexAccess( rxIndexAccess ), mnIndex( 0 ) {} in SimpleIndexAccessToEnumeration()
67 return mnIndex < mxIndexAccess->getCount(); in hasMoreElements()
74 return mxIndexAccess->getByIndex( mnIndex++ ); in nextElement()
78 css::uno::Reference< css::container::XIndexAccess > mxIndexAccess; member in SimpleIndexAccessToEnumeration
H A Dcollectionbase.hxx200 css::uno::Reference< css::container::XIndexAccess > mxIndexAccess; member in vbahelper::CollectionBase

Completed in 41 milliseconds