Lines Matching refs:obj

284 …void setPropertyValue(const Any& obj, const ::rtl::OUString& aPropertyName, const Any& aValue) con…
286 Any getPropertyValue(const Any& obj, const ::rtl::OUString& aPropertyName) const;
287 void setPropertyValueByIndex(const Any& obj, sal_Int32 nIndex, const Any& aValue) const;
289 Any getPropertyValueByIndex(const Any& obj, sal_Int32 nIndex) const;
426 void IntrospectionAccessStatic_Impl::setPropertyValue( const Any& obj, const ::rtl::OUString& aProp… in setPropertyValue() argument
431 setPropertyValueByIndex( obj, (sal_Int32)i, aValue ); in setPropertyValue()
436 void IntrospectionAccessStatic_Impl::setPropertyValueByIndex(const Any& obj, sal_Int32 nSequenceInd… in setPropertyValueByIndex() argument
440 TypeClass eObjType = obj.getValueType().getTypeClass(); in setPropertyValueByIndex()
445 xInterface = *( Reference<XInterface>*)obj.getValue(); in setPropertyValueByIndex()
533 xField2->set( (Any&)obj, aValue ); in setPropertyValueByIndex()
539 xField->set( obj, aValue ); in setPropertyValueByIndex()
559 xMethod->invoke( obj, args ); in setPropertyValueByIndex()
570 Any IntrospectionAccessStatic_Impl::getPropertyValue( const Any& obj, const ::rtl::OUString& aPrope… in getPropertyValue() argument
574 return getPropertyValueByIndex( obj, i ); in getPropertyValue()
579 Any IntrospectionAccessStatic_Impl::getPropertyValueByIndex(const Any& obj, sal_Int32 nSequenceInde… in getPropertyValueByIndex() argument
584 TypeClass eObjType = obj.getValueType().getTypeClass(); in getPropertyValueByIndex()
589 xInterface = *(Reference<XInterface>*)obj.getValue(); in getPropertyValueByIndex()
648 aRet = xField->get( obj ); in getPropertyValueByIndex()
667 aRet = xMethod->invoke( obj, args ); in getPropertyValueByIndex()
758 ImplIntrospectionAccess( const Any& obj, IntrospectionAccessStatic_Impl* pStaticImpl_ );
792 ( const Any& obj, IntrospectionAccessStatic_Impl* pStaticImpl_ ) in ImplIntrospectionAccess() argument
793 : maInspectedObject( obj ), mpStaticImpl( pStaticImpl_ ), maAdapter() in ImplIntrospectionAccess()
848 const Any& obj, IntrospectionAccessStatic_Impl* pStaticImpl_ );
927 const Any& obj, IntrospectionAccessStatic_Impl* pStaticImpl_ ) in ImplIntrospectionAdapter() argument
928 : mpAccess( pAccess_), mrInspectedObject( obj ), mpStaticImpl( pStaticImpl_ ) in ImplIntrospectionAdapter()