Lines Matching refs:css
46 typedef ::cppu::WeakImplHelper1< css::container::XEnumeration > EnumerationHelper_BASE;
62 …const css::uno::Reference< css::container::XIndexAccess >& rxIndexAccess ) throw (css::uno::Runtim… in SimpleIndexAccessToEnumeration()
65 virtual sal_Bool SAL_CALL hasMoreElements() throw (css::uno::RuntimeException) in hasMoreElements()
70 …virtual css::uno::Any SAL_CALL nextElement() throw (css::container::NoSuchElementException, css::l… in nextElement()
73 throw css::container::NoSuchElementException(); in nextElement()
78 css::uno::Reference< css::container::XIndexAccess > mxIndexAccess;
95 const css::uno::Reference< ov::XHelperInterface >& rxParent, in SimpleEnumerationBase()
96 const css::uno::Reference< css::uno::XComponentContext >& rxContext, in SimpleEnumerationBase()
97 …const css::uno::Reference< css::container::XEnumeration >& rxEnumeration ) throw (css::uno::Runtim… in SimpleEnumerationBase()
101 const css::uno::Reference< ov::XHelperInterface >& rxParent, in SimpleEnumerationBase()
102 const css::uno::Reference< css::uno::XComponentContext >& rxContext, in SimpleEnumerationBase()
103 …const css::uno::Reference< css::container::XIndexAccess >& rxIndexAccess ) throw (css::uno::Runtim… in SimpleEnumerationBase()
106 virtual sal_Bool SAL_CALL hasMoreElements() throw (css::uno::RuntimeException) in hasMoreElements()
111 …virtual css::uno::Any SAL_CALL nextElement() throw (css::container::NoSuchElementException, css::l… in nextElement()
118 virtual css::uno::Any createCollectionObject( const css::uno::Any& rSource ) = 0;
121 css::uno::Reference< ov::XHelperInterface > mxParent;
122 css::uno::Reference< css::uno::XComponentContext > mxContext;
123 css::uno::Reference< css::container::XEnumeration > mxEnumeration;
132 css::uno::WeakReference< ov::XHelperInterface > m_xParent;
133 css::uno::Reference< css::uno::XComponentContext > m_xContext;
134 css::uno::Reference< css::container::XEnumeration > m_xEnumeration;
137 …css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XCompon… in EnumerationHelperImpl()
138 …virtual ::sal_Bool SAL_CALL hasMoreElements( ) throw (css::uno::RuntimeException) { return m_xEnu… in hasMoreElements()
146 typedef ::cppu::WeakImplHelper3< css::container::XNameAccess, css::container::XIndexAccess, css::co…
152 typedef std::vector< css::uno::Reference< Ifc1 > > XNamedVec;
162 virtual ::sal_Bool SAL_CALL hasMoreElements( ) throw (css::uno::RuntimeException) in hasMoreElements()
167 …virtual css::uno::Any SAL_CALL nextElement( ) throw (css::container::NoSuchElementException, css:… in nextElement()
170 return css::uno::makeAny( *mIt++ ); in nextElement()
171 throw css::container::NoSuchElementException(); in nextElement()
181 …virtual css::uno::Type SAL_CALL getElementType( ) throw (css::uno::RuntimeException) { return If… in getElementType()
182 …virtual ::sal_Bool SAL_CALL hasElements( ) throw (css::uno::RuntimeException) { return ( mXNamedV… in hasElements()
184 … css::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName ) throw (css::container::NoSuchEle… in getByName()
187 throw css::container::NoSuchElementException(); in getByName()
188 return css::uno::makeAny( *cachePos ); in getByName()
190 …virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames( ) throw (css::uno::Runtim… in getElementNames()
192 css::uno::Sequence< rtl::OUString > sNames( mXNamedVec.size() ); in getElementNames()
199 css::uno::Reference< css::container::XNamed > xName( *it, css::uno::UNO_QUERY_THROW ); in getElementNames()
204 …virtual ::sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) throw (css::uno::RuntimeExce… in hasByName()
210 css::uno::Reference< css::container::XNamed > xName( *cachePos, css::uno::UNO_QUERY_THROW ); in hasByName()
218 …virtual ::sal_Int32 SAL_CALL getCount( ) throw (css::uno::RuntimeException) { return mXNamedVec.s… in getCount()
219 …irtual css::uno::Any SAL_CALL getByIndex( ::sal_Int32 Index ) throw (css::lang::IndexOutOfBoundsEx… in getByIndex()
222 throw css::lang::IndexOutOfBoundsException(); in getByIndex()
224 return css::uno::makeAny( mXNamedVec[ Index ] ); in getByIndex()
228 …virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration( ) throw (… in createEnumeration()
240 css::uno::Reference< css::container::XIndexAccess > m_xIndexAccess;
241 css::uno::Reference< css::container::XNameAccess > m_xNameAccess;
243 …virtual css::uno::Any getItemByStringIndex( const rtl::OUString& sIndex ) throw (css::uno::Runtime… in getItemByStringIndex()
246 …css::uno::RuntimeException( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ScVbaCollectionBase string… in getItemByStringIndex()
251 …virtual css::uno::Any getItemByIntIndex( const sal_Int32 nIndex ) throw (css::uno::RuntimeExceptio… in getItemByIntIndex()
254 …css::uno::RuntimeException( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ScVbaCollectionBase numeri… in getItemByIntIndex()
257 throw css::lang::IndexOutOfBoundsException( in getItemByIntIndex()
260 css::uno::Reference< css::uno::XInterface >() ); in getItemByIntIndex()
266 …virtual void UpdateCollectionIndex( const css::uno::Reference< css::container::XIndexAccess >& xIn… in UpdateCollectionIndex()
268 …css::uno::Reference< css::container::XNameAccess > xNameAccess( xIndexAccess, css::uno::UNO_QUERY_… in UpdateCollectionIndex()
274 …css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComp… in ScVbaCollectionBase()
276 virtual ::sal_Int32 SAL_CALL getCount() throw (css::uno::RuntimeException) in getCount()
281 …virtual css::uno::Any SAL_CALL Item( const css::uno::Any& Index1, const css::uno::Any& /*not proce… in Item()
283 if ( Index1.getValueTypeClass() != css::uno::TypeClass_STRING ) in Item()
292 throw css::lang::IndexOutOfBoundsException( message, in Item()
293 css::uno::Reference< css::uno::XInterface >() ); in Item()
303 ::rtl::OUString SAL_CALL getDefaultMethodName( ) throw (css::uno::RuntimeException) in getDefaultMethodName()
309 …virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (cs…
312 virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException) = 0;
314 virtual ::sal_Bool SAL_CALL hasElements() throw (css::uno::RuntimeException) in hasElements()
318 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) = 0;
329 …css::uno::Reference< ov::XHelperInterface > xParent, const css::uno::Reference< css::uno::XCompone… in ScVbaCollectionBaseImpl()
339 …css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XCompon… in CollTestImplHelper()