Home
last modified time | relevance | path

Searched refs:rAny (Results 1 – 25 of 159) sorted by path

1234567

/trunk/main/canvas/inc/canvas/base/
H A Dgraphicdevicebase.hxx370 void setDumpScreenContent( const ::com::sun::star::uno::Any& rAny ) in setDumpScreenContent() argument
374 rAny >>= mbDumpScreenContent; in setDumpScreenContent()
/trunk/main/canvas/source/vcl/
H A Dspritecanvashelper.hxx128 void enableUnsafeScrolling( const ::com::sun::star::uno::Any& rAny ) in enableUnsafeScrolling() argument
130 mbIsUnsafeScrolling = rAny.get<bool>(); in enableUnsafeScrolling()
137 void enableSpriteBounds( const ::com::sun::star::uno::Any& rAny ) in enableSpriteBounds() argument
139 mbShowSpriteBounds = rAny.get<bool>(); in enableSpriteBounds()
/trunk/main/chart2/source/controller/itemsetwrapper/
H A DAxisItemConverter.cxx165 bool lcl_hasTimeIntervalValue( const uno::Any& rAny ) in lcl_hasTimeIntervalValue() argument
169 if( rAny >>= aValue ) in lcl_hasTimeIntervalValue()
/trunk/main/chart2/source/inc/
H A DCommonConverters.hxx260 sal_Bool hasDoubleValue( const ::com::sun::star::uno::Any& rAny );
263 sal_Bool hasLongOrShortValue( const ::com::sun::star::uno::Any& rAny );
265 sal_Int16 getShortForLongAlso( const ::com::sun::star::uno::Any& rAny );
H A DCommonFunctors.hxx60 double operator() ( const ::com::sun::star::uno::Any & rAny ) in operator ()()
65 ::com::sun::star::uno::TypeClass eClass( rAny.getValueType().getTypeClass() ); in operator ()()
68 fResult = * reinterpret_cast< const double * >( rAny.getValue() ); in operator ()()
80 ::rtl::OUString operator() ( const ::com::sun::star::uno::Any & rAny ) in operator ()()
82 ::com::sun::star::uno::TypeClass eClass( rAny.getValueType().getTypeClass() ); in operator ()()
85 const double* pDouble = reinterpret_cast< const double * >( rAny.getValue() ); in operator ()()
98 return * reinterpret_cast< const ::rtl::OUString * >( rAny.getValue() ); in operator ()()
H A DObjectIdentifier.hxx103 ObjectIdentifier( const ::com::sun::star::uno::Any& rAny );
H A DPropertyHelper.hxx111 const ::com::sun::star::uno::Any & rAny );
126 …( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const ::com::sun::star::uno::Any & rAny );
128 …( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const ::com::sun::star::uno::Any & rAny );
143 …( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const ::com::sun::star::uno::Any & rAny );
/trunk/main/chart2/source/tools/
H A DCommonConverters.cxx493 sal_Bool hasDoubleValue( const uno::Any& rAny ) in hasDoubleValue() argument
497 if( rAny >>= fValue ) in hasDoubleValue()
502 sal_Bool hasLongOrShortValue( const uno::Any& rAny ) in hasLongOrShortValue() argument
506 if( rAny >>= n32 ) in hasLongOrShortValue()
511 if( rAny >>= n16 ) in hasLongOrShortValue()
516 sal_Int16 getShortForLongAlso( const uno::Any& rAny ) in getShortForLongAlso() argument
520 if( !(rAny >>= nRet) ) in getShortForLongAlso()
523 if( rAny >>= n32 ) in getShortForLongAlso()
H A DDiagramHelper.cxx1054 Any& rAny = rCat[0]; in lcl_switchToDateCategories() local
1055 if( !(rAny>>=fTest) ) in lcl_switchToDateCategories()
1057 rAny = uno::makeAny(fNan); in lcl_switchToDateCategories()
H A DObjectIdentifier.cxx269 ObjectIdentifier::ObjectIdentifier( const Any& rAny ) in ObjectIdentifier() argument
273 const uno::Type& rType = rAny.getValueType(); in ObjectIdentifier()
276 rAny >>= m_aObjectCID; in ObjectIdentifier()
280 rAny >>= m_xAdditionalShape; in ObjectIdentifier()
H A DPropertyHelper.cxx275 …setPropertyValueAny( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const uno::Any & rAny ) in setPropertyValueAny() argument
279 rOutMap.insert( tPropertyValueMap::value_type( key, rAny )); in setPropertyValueAny()
281 (*aIt).second = rAny; in setPropertyValueAny()
285 …>( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const ::com::sun::star::uno::Any & rAny ) in setPropertyValue() argument
287 setPropertyValueAny( rOutMap, key, rAny ); in setPropertyValue()
290 …ertyValueDefaultAny( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const uno::Any & rAny ) in setPropertyValueDefaultAny() argument
293 setPropertyValue( rOutMap, key, rAny ); in setPropertyValueDefaultAny()
297 …>( tPropertyValueMap & rOutMap, tPropertyValueMapKey key, const ::com::sun::star::uno::Any & rAny ) in setPropertyValueDefault() argument
299 setPropertyValueDefaultAny( rOutMap, key, rAny ); in setPropertyValueDefault()
/trunk/main/chart2/source/view/main/
H A DPropertyMapper.cxx136 const uno::Any& rAny = aValueIt->second; in getMultiPropertyListsFromValueMap() local
137 if( rAny.hasValue() ) in getMultiPropertyListsFromValueMap()
141 rValues[nN] = rAny; in getMultiPropertyListsFromValueMap()
/trunk/main/comphelper/inc/comphelper/
H A Dextract.hxx64 if (rAny.getValueTypeClass() == ::com::sun::star::uno::TypeClass_ENUM) in enum2int()
66 rnEnum = * reinterpret_cast< const int * >( rAny.getValue() ); in enum2int()
70 return rAny >>= rnEnum; in enum2int()
81 inline void SAL_CALL any2enum( E & eRet, const ::com::sun::star::uno::Any & rAny ) in any2enum() argument
85 if (! (rAny >>= eRet)) in any2enum()
89 if (! (rAny >>= nValue)) in any2enum()
120 const ::com::sun::star::uno::Any & rAny ) in extractInterface()
123 return (rAny >>= rxOut); in extractInterface()
132 inline sal_Bool SAL_CALL any2bool( const ::com::sun::star::uno::Any & rAny ) in any2bool() argument
136 if ( rAny >>= sValue) in any2bool()
[all …]
/trunk/main/cppu/inc/com/sun/star/uno/
H A DAny.h84 inline Any( const Any & rAny ) SAL_THROW( () );
116 inline Any & SAL_CALL operator = ( const Any & rAny ) SAL_THROW( () );
234 inline sal_Bool SAL_CALL operator == ( const Any & rAny ) const SAL_THROW( () );
241 inline sal_Bool SAL_CALL operator != ( const Any & rAny ) const SAL_THROW( () );
282 inline void SAL_CALL operator <<= ( Any & rAny, const C & value ) SAL_THROW( () );
285 inline void SAL_CALL operator <<= ( Any & rAny, bool const & value )
298 inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, C & value ) SAL_THROW( () );
330 inline sal_Bool SAL_CALL operator >>= ( Any const & rAny, bool & value )
333 inline sal_Bool SAL_CALL operator == ( Any const & rAny, bool const & value )
354 inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, Type & value ) SAL_THROW( () );
[all …]
H A DAny.hxx69 ::uno_type_any_construct( this, rAny.pData, rAny.pType, (uno_AcquireFunc)cpp_acquire ); in Any()
99 if (this != &rAny) in operator =()
102 this, rAny.pData, rAny.pType, in operator =()
167 pData, pType, rAny.pData, rAny.pType, in operator ==()
174 pData, pType, rAny.pData, rAny.pType, in operator !=()
222 rAny.pData, rAny.pType, in operator >>=()
285 switch (rAny.pType->eTypeClass) in operator >>=()
301 switch (rAny.pType->eTypeClass) in operator >>=()
511 if (&rAny != &value) in operator >>=()
514 &value, rAny.pData, rAny.pType, in operator >>=()
[all …]
H A DReference.h301 inline Reference( const Any & rAny, UnoReference_Query ) SAL_THROW( (RuntimeException) );
326 inline Reference( const Any & rAny, UnoReference_QueryThrow ) SAL_THROW( (RuntimeException) );
430 inline bool set( Any const & rAny, UnoReference_Query );
462 inline void set( Any const & rAny, UnoReference_QueryThrow );
H A DReference.hxx164 inline Reference< interface_type >::Reference( const Any & rAny, UnoReference_Query ) SAL_THROW( (R… in Reference() argument
166 _pInterface = (typelib_TypeClass_INTERFACE == rAny.pType->eTypeClass in Reference()
167 ? iquery( static_cast< XInterface * >( rAny.pReserved ) ) : 0); in Reference()
189 _pInterface = iquery_throw( typelib_TypeClass_INTERFACE == rAny.pType->eTypeClass in Reference()
190 ? static_cast< XInterface * >( rAny.pReserved ) : 0 ); in Reference()
276 Any const & rAny, UnoReference_Query ) in set() argument
281 rAny.pType->eTypeClass == typelib_TypeClass_INTERFACE in set()
282 ? static_cast< XInterface * >( rAny.pReserved ) : 0 )), in set()
305 Any const & rAny, UnoReference_QueryThrow ) in set() argument
309 rAny.pType->eTypeClass == typelib_TypeClass_INTERFACE in set()
[all …]
/trunk/main/editeng/inc/editeng/
H A Dunoipset.hxx62 void AddUsrAnyForID(const ::com::sun::star::uno::Any& rAny, sal_uInt16 nWID);
H A Dunotext.hxx281 …yValue( const SfxItemPropertySimpleEntry* pMap, com::sun::star::uno::Any& rAny, const SfxItemSet& …
/trunk/main/editeng/source/uno/
H A Dunoipset.cxx89 void SvxItemPropertySet::AddUsrAnyForID(const uno::Any& rAny, sal_uInt16 nWID) in AddUsrAnyForID() argument
96 pNew->aAny = rAny; in AddUsrAnyForID()
H A Dunotext.cxx670 void SvxUnoTextRangeBase::getPropertyValue( const SfxItemPropertySimpleEntry* pMap, uno::Any& rAny,… in getPropertyValue() argument
692 rAny <<= xField; in getPropertyValue()
700 rAny <<= aType; in getPropertyValue()
705 rAny <<= aType; in getPropertyValue()
710 if(!GetPropertyValueHelper( *((SfxItemSet*)(&rSet)), pMap, rAny, &maSelection, GetEditSource() )) in getPropertyValue()
711 rAny = mpPropSet->getPropertyValue(pMap, rSet, true, false ); in getPropertyValue()
/trunk/main/extensions/source/ole/
H A Dunoconversionutilities.hxx471 variantToAny(& var, rAny); in variantToAny()
708 if (rAny >>= xInt) in anyToVariant()
723 if (rAny >>= d) in anyToVariant()
736 if (rAny >>= d) in anyToVariant()
753 if (rAny >>= c) in anyToVariant()
766 if (rAny >>= s) in anyToVariant()
810 if (rAny >>= value) in anyToVariant()
932 rAny >>= value; in anyToVariant()
948 rAny >>= value; in anyToVariant()
955 rAny >>= type; in anyToVariant()
[all …]
/trunk/main/extensions/test/ole/cpnt/
H A Dcpnt.cxx272 virtual void SAL_CALL other_methodAnyIn(const Any& rAny) throw( RuntimeException );
273 virtual void SAL_CALL other_methodAnyOut(Any& rAny) throw( RuntimeException );
276 virtual Any SAL_CALL other_methodAny( const Any& rAny, const OUString& typeInAny )
1324 void SAL_CALL OComponent::other_methodAnyOut(Any& rAny) throw( RuntimeException ) in other_methodAnyOut() argument
1326 rAny <<= OUString(L"Ein Any"); in other_methodAnyOut()
1342 Any SAL_CALL OComponent::other_methodAny( const Any& rAny, const OUString& typeInAny ) in other_methodAny() argument
1353 if (rAny.getValueType() != expectedType) in other_methodAny()
1356 return rAny; in other_methodAny()
/trunk/main/extensions/test/ole/idl/
H A Doletest.idl183 void other_methodAnyIn( [in] any rAny);
184 void other_methodAnyOut( [out] any rAny);
187 //typeInAny determines what type must be in rAny. If rAny contains
189 any other_methodAny([in] any rAny, [in] string typeInAny);
/trunk/main/filter/inc/filter/msfilter/
H A Descherex.hxx1012 ::com::sun::star::uno::Any& rAny,

Completed in 158 milliseconds

1234567