Lines Matching refs:css

92 namespace css = com::sun::star;
106 css::uno::Reference< css::lang::XComponent > comp( in dispose()
107 ifc, css::uno::UNO_QUERY); in dispose()
114 css::uno::Reference< T > ifc;
123 css::beans::Property const & theProperty, bool thePresent): in PropertyData()
126 css::beans::Property property;
136 css::uno::Reference< css::uno::XInterface > const & object,
141 css::uno::Reference< css::reflection::XTypeDescription > const & type, in initProperties()
142 css::uno::Sequence< rtl::OUString > const & absentOptional, in initProperties()
153 css::uno::Reference< css::reflection::XTypeDescription > const & type,
154 css::uno::Sequence< rtl::OUString > const & absentOptional,
157 static css::uno::Reference< css::reflection::XTypeDescription >
159 css::uno::Reference< css::reflection::XTypeDescription > const & type);
163 css::uno::Reference< css::uno::XInterface > const & object, in get()
168 throw css::beans::UnknownPropertyException(name, object); in get()
174 css::uno::Reference< css::reflection::XTypeDescription > const & type, in initProperties()
175 css::uno::Sequence< rtl::OUString > const & absentOptional, in initProperties()
178 css::uno::Reference< css::reflection::XInterfaceTypeDescription2 > ifc( in initProperties()
179 resolveTypedefs(type), css::uno::UNO_QUERY_THROW); in initProperties()
181 css::uno::Sequence< in initProperties()
182 css::uno::Reference< css::reflection::XTypeDescription > > bases( in initProperties()
187 css::uno::Sequence< in initProperties()
188 css::uno::Reference< in initProperties()
189 css::reflection::XInterfaceMemberTypeDescription > > members( in initProperties()
196 == css::uno::TypeClass_INTERFACE_ATTRIBUTE) in initProperties()
198 css::uno::Reference< in initProperties()
199 css::reflection::XInterfaceAttributeTypeDescription2 > attr( in initProperties()
200 members[i], css::uno::UNO_QUERY_THROW); in initProperties()
203 attrAttribs |= css::beans::PropertyAttribute::BOUND; in initProperties()
207 attrAttribs |= css::beans::PropertyAttribute::READONLY; in initProperties()
210 css::uno::Sequence< in initProperties()
211 css::uno::Reference< in initProperties()
212 css::reflection::XCompoundTypeDescription > > excs( in initProperties()
240 |= css::beans::PropertyAttribute::CONSTRAINED; in initProperties()
244 attrAttribs |= css::beans::PropertyAttribute::OPTIONAL; in initProperties()
246 css::uno::Reference< css::reflection::XTypeDescription > t( in initProperties()
256 n = css::beans::PropertyAttribute::MAYBEAMBIGUOUS; in initProperties()
261 n = css::beans::PropertyAttribute::MAYBEDEFAULT; in initProperties()
266 n = css::beans::PropertyAttribute::MAYBEVOID; in initProperties()
274 css::uno::Sequence< in initProperties()
275 css::uno::Reference< css::reflection::XTypeDescription > > in initProperties()
277 css::uno::Reference< in initProperties()
278 css::reflection::XStructTypeDescription >( in initProperties()
280 css::uno::UNO_QUERY_THROW)->getTypeArguments()); in initProperties()
282 throw css::uno::RuntimeException( in initProperties()
286 css::uno::Reference< css::uno::XInterface >()); in initProperties()
293 throw css::uno::RuntimeException( in initProperties()
297 css::uno::Reference< css::uno::XInterface >()); in initProperties()
304 css::beans::Property( in initProperties()
306 css::uno::Type( in initProperties()
313 throw css::uno::RuntimeException( in initProperties()
317 css::uno::Reference< css::uno::XInterface >()); in initProperties()
325 css::uno::Reference< css::reflection::XTypeDescription > Data::resolveTypedefs( in resolveTypedefs()
326 css::uno::Reference< css::reflection::XTypeDescription > const & type) in resolveTypedefs()
328 css::uno::Reference< css::reflection::XTypeDescription > t(type); in resolveTypedefs()
329 while (t->getTypeClass() == css::uno::TypeClass_TYPEDEF) { in resolveTypedefs()
330 t = css::uno::Reference< css::reflection::XIndirectTypeDescription >( in resolveTypedefs()
331 t, css::uno::UNO_QUERY_THROW)->getReferencedType(); in resolveTypedefs()
336 class Info: public cppu::WeakImplHelper1< css::beans::XPropertySetInfo > {
340 virtual css::uno::Sequence< css::beans::Property > SAL_CALL getProperties()
341 throw (css::uno::RuntimeException);
343 virtual css::beans::Property SAL_CALL getPropertyByName(
346 css::beans::UnknownPropertyException, css::uno::RuntimeException);
349 throw (css::uno::RuntimeException);
355 css::uno::Sequence< css::beans::Property > Info::getProperties() in getProperties()
356 throw (css::uno::RuntimeException) in getProperties()
360 css::uno::Sequence< css::beans::Property > s( in getProperties()
374 throw css::uno::RuntimeException( in getProperties()
379 css::beans::Property Info::getPropertyByName(rtl::OUString const & name) in getPropertyByName()
380 throw (css::beans::UnknownPropertyException, css::uno::RuntimeException) in getPropertyByName()
387 throw (css::uno::RuntimeException) in hasPropertyByName()
394 std::multiset< css::uno::Reference< css::beans::XPropertyChangeListener > >
403 css::beans::PropertyChangeEvent event;
418 } catch (css::lang::DisposedException &) {} in notify()
426 } catch (css::lang::DisposedException &) {} in notify()
433 css::uno::Reference< css::uno::XComponentContext > const & context,
435 css::uno::Sequence< rtl::OUString > const & absentOptional,
436 css::uno::Type const & type);
439 css::uno::Reference< css::uno::XInterface > const & object,
443 css::uno::Reference< css::uno::XInterface > const & object,
444 rtl::OUString const & name, css::uno::Any const & value,
448 css::uno::Any getProperty(
449 css::uno::Reference< css::uno::XInterface > const & object,
450 rtl::OUString const & name, css::beans::PropertyState * state) const;
453 css::uno::Sequence< rtl::OUString > handleMap;
458 std::multiset< css::uno::Reference< css::beans::XVetoableChangeListener > >
469 css::uno::Reference< css::reflection::XIdlClass > getReflection(
472 static css::uno::Any wrapValue(
473 css::uno::Reference< css::uno::XInterface > const & object,
474 css::uno::Any const & value,
475 css::uno::Reference< css::reflection::XIdlClass > const & type,
479 css::uno::Reference< css::uno::XComponentContext > const & m_context;
480 css::uno::Sequence< rtl::OUString > m_absentOptional;
481 css::uno::Type m_type;
482 css::uno::Reference< css::reflection::XIdlClass > m_idlClass;
486 css::uno::Reference< css::uno::XComponentContext > const & context, in Impl()
488 css::uno::Sequence< rtl::OUString > const & absentOptional, in Impl()
489 css::uno::Type const & type): in Impl()
500 css::uno::Reference< css::reflection::XTypeDescription > ifc; in Impl()
502 ifc = css::uno::Reference< css::reflection::XTypeDescription >( in Impl()
503 css::uno::Reference< css::container::XHierarchicalNameAccess >( in Impl()
509 css::uno::UNO_QUERY_THROW)->getByHierarchicalName( in Impl()
511 css::uno::UNO_QUERY_THROW); in Impl()
512 } catch (css::container::NoSuchElementException & e) { in Impl()
513 throw css::uno::RuntimeException( in Impl()
519 css::uno::Reference< css::uno::XInterface >()); in Impl()
530 css::uno::Reference< css::uno::XInterface > const & object, in translateHandle()
534 throw css::beans::UnknownPropertyException( in translateHandle()
543 css::uno::Reference< css::uno::XInterface > const & object, in setProperty()
544 rtl::OUString const & name, css::uno::Any const & value, bool isAmbiguous, in setProperty()
549 throw css::beans::UnknownPropertyException(name, object); in setProperty()
553 & css::beans::PropertyAttribute::MAYBEAMBIGUOUS) in setProperty()
557 & css::beans::PropertyAttribute::MAYBEDEFAULT) in setProperty()
560 throw css::lang::IllegalArgumentException( in setProperty()
568 css::uno::Reference< css::reflection::XIdlField2 > f( in setProperty()
569 m_idlClass->getField(name), css::uno::UNO_QUERY_THROW); in setProperty()
570 css::uno::Any o(object->queryInterface(m_type)); in setProperty()
571 css::uno::Any v( in setProperty()
574 (css::uno::Reference< css::reflection::XIdlField2 >( in setProperty()
575 m_idlClass->getField(name), css::uno::UNO_QUERY_THROW)-> in setProperty()
578 & css::beans::PropertyAttribute::MAYBEAMBIGUOUS) in setProperty()
582 & css::beans::PropertyAttribute::MAYBEDEFAULT) in setProperty()
586 & css::beans::PropertyAttribute::MAYBEVOID) in setProperty()
590 } catch (css::lang::IllegalArgumentException & e) { in setProperty()
592 throw css::lang::IllegalArgumentException( in setProperty()
595 throw css::uno::RuntimeException( in setProperty()
603 } catch (css::lang::IllegalAccessException &) { in setProperty()
606 throw css::beans::PropertyVetoException( in setProperty()
611 } catch (css::lang::WrappedTargetRuntimeException & e) { in setProperty()
618 static_cast< css::beans::UnknownPropertyException * >(0))) in setProperty()
620 & css::beans::PropertyAttribute::OPTIONAL) in setProperty()
623 throw css::beans::UnknownPropertyException(name, object); in setProperty()
626 static_cast< css::beans::PropertyVetoException * >( in setProperty()
629 & css::beans::PropertyAttribute::CONSTRAINED) in setProperty()
632 throw css::beans::PropertyVetoException(name, object); in setProperty()
634 throw css::lang::WrappedTargetException( in setProperty()
640 css::uno::Any PropertySetMixinImpl::Impl::getProperty( in getProperty()
641 css::uno::Reference< css::uno::XInterface > const & object, in getProperty()
642 rtl::OUString const & name, css::beans::PropertyState * state) const in getProperty()
646 throw css::beans::UnknownPropertyException(name, object); in getProperty()
648 css::uno::Reference< css::reflection::XIdlField2 > field( in getProperty()
649 m_idlClass->getField(name), css::uno::UNO_QUERY_THROW); in getProperty()
650 css::uno::Any value; in getProperty()
653 } catch (css::lang::IllegalArgumentException & e) { in getProperty()
654 throw css::uno::RuntimeException( in getProperty()
660 } catch (css::lang::WrappedTargetRuntimeException & e) { in getProperty()
667 static_cast< css::beans::UnknownPropertyException * >(0))) in getProperty()
669 & css::beans::PropertyAttribute::OPTIONAL) in getProperty()
672 throw css::beans::UnknownPropertyException(name, object); in getProperty()
674 throw css::lang::WrappedTargetException( in getProperty()
680 & css::beans::PropertyAttribute::MAYBEAMBIGUOUS) in getProperty()
684 & css::beans::PropertyAttribute::MAYBEDEFAULT) in getProperty()
688 & css::beans::PropertyAttribute::MAYBEVOID) in getProperty()
697 css::uno::Reference< css::reflection::XIdlClass > ambiguous( in getProperty()
700 if (!(css::uno::Reference< css::reflection::XIdlField2 >( in getProperty()
704 css::uno::UNO_QUERY_THROW)->get(value) in getProperty()
707 throw css::uno::RuntimeException( in getProperty()
715 value = css::uno::Reference< css::reflection::XIdlField2 >( in getProperty()
718 css::uno::UNO_QUERY_THROW)->get(value); in getProperty()
719 } catch (css::lang::IllegalArgumentException & e) { in getProperty()
720 throw css::uno::RuntimeException( in getProperty()
734 css::uno::Reference< css::reflection::XIdlClass > defaulted( in getProperty()
738 if (!(css::uno::Reference< css::reflection::XIdlField2 >( in getProperty()
742 css::uno::UNO_QUERY_THROW)->get(value) in getProperty()
745 throw css::uno::RuntimeException( in getProperty()
753 value = css::uno::Reference< css::reflection::XIdlField2 >( in getProperty()
756 css::uno::UNO_QUERY_THROW)->get(value); in getProperty()
757 } catch (css::lang::IllegalArgumentException & e) { in getProperty()
758 throw css::uno::RuntimeException( in getProperty()
772 css::uno::Reference< css::reflection::XIdlClass > optional( in getProperty()
776 if (!(css::uno::Reference< css::reflection::XIdlField2 >( in getProperty()
780 css::uno::UNO_QUERY_THROW)->get(value) in getProperty()
783 throw css::uno::RuntimeException( in getProperty()
794 value = css::uno::Reference< css::reflection::XIdlField2 >( in getProperty()
797 css::uno::UNO_QUERY_THROW)->get(value); in getProperty()
798 } catch (css::lang::IllegalArgumentException & e) { in getProperty()
799 throw css::uno::RuntimeException( in getProperty()
809 throw css::uno::RuntimeException( in getProperty()
821 ? css::beans::PropertyState_AMBIGUOUS_VALUE in getProperty()
823 ? css::beans::PropertyState_DEFAULT_VALUE in getProperty()
824 : css::beans::PropertyState_DIRECT_VALUE; in getProperty()
829 css::uno::Reference< css::reflection::XIdlClass >
832 css::uno::Reference< css::lang::XMultiComponentFactory > factory( in getReflection()
833 m_context->getServiceManager(), css::uno::UNO_QUERY_THROW); in getReflection()
834 AutoDispose< css::reflection::XIdlReflection > refl; in getReflection()
836 refl.ifc = css::uno::Reference< css::reflection::XIdlReflection >( in getReflection()
842 css::uno::UNO_QUERY_THROW); in getReflection()
843 } catch (css::uno::RuntimeException &) { in getReflection()
845 } catch (css::uno::Exception & e) { in getReflection()
846 throw css::uno::DeploymentException( in getReflection()
854 css::uno::Reference< css::reflection::XIdlClass > idlClass( in getReflection()
855 refl.ifc->forName(typeName), css::uno::UNO_QUERY_THROW); in getReflection()
860 css::uno::Any PropertySetMixinImpl::Impl::wrapValue( in wrapValue()
861 css::uno::Reference< css::uno::XInterface > const & object, in wrapValue()
862 css::uno::Any const & value, in wrapValue()
863 css::uno::Reference< css::reflection::XIdlClass > const & type, in wrapValue()
873 css::uno::Any strct; in wrapValue()
876 css::uno::Reference< css::reflection::XIdlField2 > field( in wrapValue()
880 css::uno::UNO_QUERY_THROW); in wrapValue()
886 css::uno::Reference< css::reflection::XIdlField2 >( in wrapValue()
890 css::uno::UNO_QUERY_THROW)->set( in wrapValue()
891 strct, css::uno::makeAny(isAmbiguous)); in wrapValue()
892 } catch (css::lang::IllegalArgumentException & e) { in wrapValue()
893 throw css::uno::RuntimeException( in wrapValue()
900 } catch (css::lang::IllegalAccessException & e) { in wrapValue()
901 throw css::uno::RuntimeException( in wrapValue()
914 css::uno::Any strct; in wrapValue()
917 css::uno::Reference< css::reflection::XIdlField2 > field( in wrapValue()
921 css::uno::UNO_QUERY_THROW); in wrapValue()
927 css::uno::Reference< css::reflection::XIdlField2 >( in wrapValue()
931 css::uno::UNO_QUERY_THROW)->set( in wrapValue()
932 strct, css::uno::makeAny(isDefaulted)); in wrapValue()
933 } catch (css::lang::IllegalArgumentException & e) { in wrapValue()
934 throw css::uno::RuntimeException( in wrapValue()
941 } catch (css::lang::IllegalAccessException & e) { in wrapValue()
942 throw css::uno::RuntimeException( in wrapValue()
955 css::uno::Any strct; in wrapValue()
959 css::uno::Reference< css::reflection::XIdlField2 >( in wrapValue()
963 css::uno::UNO_QUERY_THROW)->set( in wrapValue()
964 strct, css::uno::makeAny(present)); in wrapValue()
966 css::uno::Reference< css::reflection::XIdlField2 > field( in wrapValue()
970 css::uno::UNO_QUERY_THROW); in wrapValue()
977 } catch (css::lang::IllegalArgumentException & e) { in wrapValue()
978 throw css::uno::RuntimeException( in wrapValue()
985 } catch (css::lang::IllegalAccessException & e) { in wrapValue()
986 throw css::uno::RuntimeException( in wrapValue()
997 throw css::uno::RuntimeException( in wrapValue()
1008 css::uno::Reference< css::uno::XComponentContext > const & context, in PropertySetMixinImpl()
1010 css::uno::Sequence< rtl::OUString > const & absentOptional, in PropertySetMixinImpl()
1011 css::uno::Type const & type) in PropertySetMixinImpl()
1024 static_cast< css::beans::XPropertySet * >(this), propertyName); in checkUnknown()
1029 rtl::OUString const & propertyName, css::uno::Any const & oldValue, in prepareSet()
1030 css::uno::Any const & newValue, BoundListeners * boundListeners) in prepareSet()
1039 throw css::lang::DisposedException( in prepareSet()
1041 static_cast< css::beans::XPropertySet * >(this)); in prepareSet()
1044 & css::beans::PropertyAttribute::CONSTRAINED) in prepareSet()
1058 & css::beans::PropertyAttribute::BOUND) in prepareSet()
1074 & css::beans::PropertyAttribute::CONSTRAINED) in prepareSet()
1077 css::beans::PropertyChangeEvent event( in prepareSet()
1078 static_cast< css::beans::XPropertySet * >(this), propertyName, in prepareSet()
1085 } catch (css::lang::DisposedException &) {} in prepareSet()
1092 } catch (css::lang::DisposedException &) {} in prepareSet()
1095 if ((it->second.property.Attributes & css::beans::PropertyAttribute::BOUND) in prepareSet()
1099 boundListeners->m_impl->event = css::beans::PropertyChangeEvent( in prepareSet()
1100 static_cast< css::beans::XPropertySet * >(this), propertyName, in prepareSet()
1114 css::lang::EventObject event( in dispose()
1115 static_cast< css::beans::XPropertySet * >(this)); in dispose()
1136 css::uno::Any PropertySetMixinImpl::queryInterface(css::uno::Type const & type) in queryInterface()
1137 throw (css::uno::RuntimeException) in queryInterface()
1140 && type == css::beans::XPropertySet::static_type())) in queryInterface()
1142 css::uno::Reference< css::uno::XInterface > ifc( in queryInterface()
1143 static_cast< css::beans::XPropertySet * >(this)); in queryInterface()
1144 return css::uno::Any(&ifc, type); in queryInterface()
1146 && type == css::beans::XFastPropertySet::static_type()) in queryInterface()
1148 css::uno::Reference< css::uno::XInterface > ifc( in queryInterface()
1149 static_cast< css::beans::XFastPropertySet * >(this)); in queryInterface()
1150 return css::uno::Any(&ifc, type); in queryInterface()
1152 && type == css::beans::XPropertyAccess::static_type()) in queryInterface()
1154 css::uno::Reference< css::uno::XInterface > ifc( in queryInterface()
1155 static_cast< css::beans::XPropertyAccess * >(this)); in queryInterface()
1156 return css::uno::Any(&ifc, type); in queryInterface()
1158 return css::uno::Any(); in queryInterface()
1162 css::uno::Reference< css::beans::XPropertySetInfo >
1163 PropertySetMixinImpl::getPropertySetInfo() throw (css::uno::RuntimeException) { in getPropertySetInfo()
1168 throw css::uno::RuntimeException( in getPropertySetInfo()
1169 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in getPropertySetInfo()
1174 rtl::OUString const & propertyName, css::uno::Any const & value) in setPropertyValue()
1176 css::beans::UnknownPropertyException, css::beans::PropertyVetoException, in setPropertyValue()
1177 css::lang::IllegalArgumentException, css::lang::WrappedTargetException, in setPropertyValue()
1178 css::uno::RuntimeException) in setPropertyValue()
1182 static_cast< css::beans::XPropertySet * >(this), propertyName, in setPropertyValue()
1186 throw css::uno::RuntimeException( in setPropertyValue()
1187 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in setPropertyValue()
1191 css::uno::Any PropertySetMixinImpl::getPropertyValue( in getPropertyValue()
1194 css::beans::UnknownPropertyException, css::lang::WrappedTargetException, in getPropertyValue()
1195 css::uno::RuntimeException) in getPropertyValue()
1199 static_cast< css::beans::XPropertySet * >(this), propertyName, 0); in getPropertyValue()
1202 throw css::uno::RuntimeException( in getPropertyValue()
1203 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in getPropertyValue()
1209 css::uno::Reference< css::beans::XPropertyChangeListener > const & listener) in addPropertyChangeListener()
1211 css::beans::UnknownPropertyException, css::lang::WrappedTargetException, in addPropertyChangeListener()
1212 css::uno::RuntimeException) in addPropertyChangeListener()
1214 css::uno::Reference< css::beans::XPropertyChangeListener >( in addPropertyChangeListener()
1215 listener, css::uno::UNO_QUERY_THROW); // reject NULL listener in addPropertyChangeListener()
1228 css::lang::EventObject( in addPropertyChangeListener()
1229 static_cast< css::beans::XPropertySet * >(this))); in addPropertyChangeListener()
1233 throw css::uno::RuntimeException( in addPropertyChangeListener()
1234 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in addPropertyChangeListener()
1240 css::uno::Reference< css::beans::XPropertyChangeListener > const & listener) in removePropertyChangeListener()
1242 css::beans::UnknownPropertyException, css::lang::WrappedTargetException, in removePropertyChangeListener()
1243 css::uno::RuntimeException) in removePropertyChangeListener()
1259 throw css::uno::RuntimeException( in removePropertyChangeListener()
1260 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in removePropertyChangeListener()
1266 css::uno::Reference< css::beans::XVetoableChangeListener > const & listener) in addVetoableChangeListener()
1268 css::beans::UnknownPropertyException, css::lang::WrappedTargetException, in addVetoableChangeListener()
1269 css::uno::RuntimeException) in addVetoableChangeListener()
1271 css::uno::Reference< css::beans::XVetoableChangeListener >( in addVetoableChangeListener()
1272 listener, css::uno::UNO_QUERY_THROW); // reject NULL listener in addVetoableChangeListener()
1285 css::lang::EventObject( in addVetoableChangeListener()
1286 static_cast< css::beans::XPropertySet * >(this))); in addVetoableChangeListener()
1290 throw css::uno::RuntimeException( in addVetoableChangeListener()
1291 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in addVetoableChangeListener()
1297 css::uno::Reference< css::beans::XVetoableChangeListener > const & listener) in removeVetoableChangeListener()
1299 css::beans::UnknownPropertyException, css::lang::WrappedTargetException, in removeVetoableChangeListener()
1300 css::uno::RuntimeException) in removeVetoableChangeListener()
1316 throw css::uno::RuntimeException( in removeVetoableChangeListener()
1317 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in removeVetoableChangeListener()
1322 sal_Int32 handle, css::uno::Any const & value) in setFastPropertyValue()
1324 css::beans::UnknownPropertyException, css::beans::PropertyVetoException, in setFastPropertyValue()
1325 css::lang::IllegalArgumentException, css::lang::WrappedTargetException, in setFastPropertyValue()
1326 css::uno::RuntimeException) in setFastPropertyValue()
1330 static_cast< css::beans::XPropertySet * >(this), in setFastPropertyValue()
1332 static_cast< css::beans::XPropertySet * >(this), handle), in setFastPropertyValue()
1336 throw css::uno::RuntimeException( in setFastPropertyValue()
1337 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in setFastPropertyValue()
1341 css::uno::Any PropertySetMixinImpl::getFastPropertyValue(sal_Int32 handle) in getFastPropertyValue()
1343 css::beans::UnknownPropertyException, css::lang::WrappedTargetException, in getFastPropertyValue()
1344 css::uno::RuntimeException) in getFastPropertyValue()
1348 static_cast< css::beans::XPropertySet * >(this), in getFastPropertyValue()
1350 static_cast< css::beans::XPropertySet * >(this), handle), in getFastPropertyValue()
1354 throw css::uno::RuntimeException( in getFastPropertyValue()
1355 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in getFastPropertyValue()
1359 css::uno::Sequence< css::beans::PropertyValue >
1360 PropertySetMixinImpl::getPropertyValues() throw (css::uno::RuntimeException) { in getPropertyValues()
1362 css::uno::Sequence< css::beans::PropertyValue > s( in getPropertyValues()
1368 static_cast< css::beans::XPropertySet * >(this), in getPropertyValues()
1370 } catch (css::beans::UnknownPropertyException &) { in getPropertyValues()
1372 } catch (css::lang::WrappedTargetException & e) { in getPropertyValues()
1373 throw css::lang::WrappedTargetRuntimeException( in getPropertyValues()
1374 e.Message, static_cast< css::beans::XPropertySet * >(this), in getPropertyValues()
1385 throw css::uno::RuntimeException( in getPropertyValues()
1386 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in getPropertyValues()
1391 css::uno::Sequence< css::beans::PropertyValue > const & props) in setPropertyValues()
1393 css::beans::UnknownPropertyException, css::beans::PropertyVetoException, in setPropertyValues()
1394 css::lang::IllegalArgumentException, css::lang::WrappedTargetException, in setPropertyValues()
1395 css::uno::RuntimeException) in setPropertyValues()
1402 static_cast< css::beans::XPropertySet * >(this), in setPropertyValues()
1405 throw css::beans::UnknownPropertyException( in setPropertyValues()
1411 static_cast< css::beans::XPropertySet * >(this)); in setPropertyValues()
1414 static_cast< css::beans::XPropertySet * >(this), props[i].Name, in setPropertyValues()
1416 props[i].State == css::beans::PropertyState_AMBIGUOUS_VALUE, in setPropertyValues()
1417 props[i].State == css::beans::PropertyState_DEFAULT_VALUE, 0); in setPropertyValues()
1421 throw css::uno::RuntimeException( in setPropertyValues()
1422 rtl::OUString(), static_cast< css::beans::XPropertySet * >(this)); in setPropertyValues()