Lines Matching refs:mSheetMap
69 SheetMap mSheetMap; member in WorkSheetsEnumeration
72 WorkSheetsEnumeration( const SheetMap& sMap ) : mSheetMap( sMap ), mIt( mSheetMap.begin() ) {} in WorkSheetsEnumeration()
75 return ( mIt != mSheetMap.end() ); in hasMoreElements()
88 SheetMap mSheetMap; member in SheetCollectionHelper
91 SheetCollectionHelper( const SheetMap& sMap ) : mSheetMap( sMap ), cachePos(mSheetMap.begin()) {} in SheetCollectionHelper()
94 …virtual ::sal_Bool SAL_CALL hasElements( ) throw (uno::RuntimeException) { return ( mSheetMap.siz… in hasElements()
104 uno::Sequence< rtl::OUString > sNames( mSheetMap.size() ); in getElementNames()
106 SheetMap::iterator it = mSheetMap.begin(); in getElementNames()
107 SheetMap::iterator it_end = mSheetMap.end(); in getElementNames()
118 cachePos = mSheetMap.begin(); in hasByName()
119 SheetMap::iterator it_end = mSheetMap.end(); in hasByName()
130 …virtual ::sal_Int32 SAL_CALL getCount( ) throw (uno::RuntimeException) { return mSheetMap.size();… in getCount()
136 return uno::makeAny( mSheetMap[ Index ] ); in getByIndex()
142 return new WorkSheetsEnumeration( mSheetMap ); in createEnumeration()