Lines Matching refs:uno

60 sal_Bool KillFile_Impl( const ::rtl::OUString& aURL, const uno::Reference< lang::XMultiServiceFacto…  in KillFile_Impl()
69 uno::Reference < ucb::XSimpleFileAccess > xAccess( in KillFile_Impl()
72 uno::UNO_QUERY ); in KillFile_Impl()
80 catch( uno::Exception& ) in KillFile_Impl()
88 ::rtl::OUString GetNewTempFileURL_Impl( const uno::Reference< lang::XMultiServiceFactory >& xFactor… in GetNewTempFileURL_Impl()
94 uno::Reference < beans::XPropertySet > xTempFile( in GetNewTempFileURL_Impl()
96 uno::UNO_QUERY ); in GetNewTempFileURL_Impl()
99 throw uno::RuntimeException(); // TODO in GetNewTempFileURL_Impl()
102 …xTempFile->setPropertyValue( ::rtl::OUString::createFromAscii( "RemoveFile" ), uno::makeAny( sal_F… in GetNewTempFileURL_Impl()
103 uno::Any aUrl = xTempFile->getPropertyValue( ::rtl::OUString::createFromAscii( "Uri" ) ); in GetNewTempFileURL_Impl()
106 catch ( uno::Exception& ) in GetNewTempFileURL_Impl()
111 throw uno::RuntimeException(); // TODO: can not create tempfile in GetNewTempFileURL_Impl()
117 ::rtl::OUString GetNewFilledTempFile_Impl( const uno::Reference< io::XInputStream >& xInStream, in GetNewFilledTempFile_Impl()
118 const uno::Reference< lang::XMultiServiceFactory >& xFactory ) in GetNewFilledTempFile_Impl()
120 uno::RuntimeException ) in GetNewFilledTempFile_Impl()
129 uno::Reference < ucb::XSimpleFileAccess > xTempAccess( in GetNewFilledTempFile_Impl()
132 uno::UNO_QUERY ); in GetNewFilledTempFile_Impl()
135 throw uno::RuntimeException(); // TODO: in GetNewFilledTempFile_Impl()
137 uno::Reference< io::XOutputStream > xTempOutStream = xTempAccess->openFileWrite( aResult ); in GetNewFilledTempFile_Impl()
143 xTempOutStream = uno::Reference< io::XOutputStream >(); in GetNewFilledTempFile_Impl()
158 catch( uno::RuntimeException& ) in GetNewFilledTempFile_Impl()
163 catch( uno::Exception& ) in GetNewFilledTempFile_Impl()
173 …ledTempFile_Impl( const uno::Reference< embed::XOptimizedStorage >& xParentStorage, const ::rtl::O… in GetNewFilledTempFile_Impl()
174 throw( io::IOException, uno::RuntimeException ) in GetNewFilledTempFile_Impl()
180 uno::Reference < beans::XPropertySet > xTempFile( in GetNewFilledTempFile_Impl()
182 uno::UNO_QUERY ); in GetNewFilledTempFile_Impl()
183 uno::Reference < io::XStream > xTempStream( xTempFile, uno::UNO_QUERY_THROW ); in GetNewFilledTempFile_Impl()
187 …xTempFile->setPropertyValue( ::rtl::OUString::createFromAscii( "RemoveFile" ), uno::makeAny( sal_F… in GetNewFilledTempFile_Impl()
188 uno::Any aUrl = xTempFile->getPropertyValue( ::rtl::OUString::createFromAscii( "Uri" ) ); in GetNewFilledTempFile_Impl()
191 catch( uno::RuntimeException& ) in GetNewFilledTempFile_Impl()
195 catch( uno::Exception& ) in GetNewFilledTempFile_Impl()
206 void SetStreamMediaType_Impl( const uno::Reference< io::XStream >& xStream, const ::rtl::OUString& … in SetStreamMediaType_Impl()
208 uno::Reference< beans::XPropertySet > xPropSet( xStream, uno::UNO_QUERY ); in SetStreamMediaType_Impl()
210 throw uno::RuntimeException(); // TODO: all the storage streams must support XPropertySet in SetStreamMediaType_Impl()
212 …xPropSet->setPropertyValue( ::rtl::OUString::createFromAscii( "MediaType" ), uno::makeAny( aMediaT… in SetStreamMediaType_Impl()
216 void LetCommonStoragePassBeUsed_Impl( const uno::Reference< io::XStream >& xStream ) in LetCommonStoragePassBeUsed_Impl()
218 uno::Reference< beans::XPropertySet > xPropSet( xStream, uno::UNO_QUERY ); in LetCommonStoragePassBeUsed_Impl()
220 …throw uno::RuntimeException(); // Only StorageStreams must be provided here, they must implement t… in LetCommonStoragePassBeUsed_Impl()
223 uno::makeAny( (sal_Bool)sal_True ) ); in LetCommonStoragePassBeUsed_Impl()
281 uno::Reference< io::XStream > OleEmbeddedObject::GetNewFilledTempStream_Impl( const uno::Reference<… in GetNewFilledTempStream_Impl()
286 uno::Reference < io::XStream > xTempFile( in GetNewFilledTempStream_Impl()
288 uno::UNO_QUERY_THROW ); in GetNewFilledTempStream_Impl()
290 uno::Reference< io::XOutputStream > xTempOutStream = xTempFile->getOutputStream(); in GetNewFilledTempStream_Impl()
303 uno::Reference< io::XStream > OleEmbeddedObject::TryToGetAcceptableFormat_Impl( const uno::Referenc… in TryToGetAcceptableFormat_Impl()
304 throw ( uno::Exception ) in TryToGetAcceptableFormat_Impl()
308 throw uno::RuntimeException(); in TryToGetAcceptableFormat_Impl()
310 uno::Reference< io::XInputStream > xInStream = xStream->getInputStream(); in TryToGetAcceptableFormat_Impl()
312 throw uno::RuntimeException(); in TryToGetAcceptableFormat_Impl()
314 uno::Reference< io::XSeekable > xSeek( xStream, uno::UNO_QUERY_THROW ); in TryToGetAcceptableFormat_Impl()
317 uno::Sequence< sal_Int8 > aData( 8 ); in TryToGetAcceptableFormat_Impl()
339 uno::Sequence< sal_Int8 > aHeadData( 4 ); in TryToGetAcceptableFormat_Impl()
378 uno::Reference < io::XStream > xResult( in TryToGetAcceptableFormat_Impl()
380 uno::UNO_QUERY_THROW ); in TryToGetAcceptableFormat_Impl()
381 uno::Reference < io::XSeekable > xResultSeek( xResult, uno::UNO_QUERY_THROW ); in TryToGetAcceptableFormat_Impl()
382 uno::Reference < io::XOutputStream > xResultOut = xResult->getOutputStream(); in TryToGetAcceptableFormat_Impl()
383 uno::Reference < io::XInputStream > xResultIn = xResult->getInputStream(); in TryToGetAcceptableFormat_Impl()
385 throw uno::RuntimeException(); in TryToGetAcceptableFormat_Impl()
438 return uno::Reference< io::XStream >(); in TryToGetAcceptableFormat_Impl()
442 void OleEmbeddedObject::InsertVisualCache_Impl( const uno::Reference< io::XStream >& xTargetStream, in InsertVisualCache_Impl()
443 const uno::Reference< io::XStream >& xCachedVisualRepresentation ) in InsertVisualCache_Impl()
444 throw ( uno::Exception ) in InsertVisualCache_Impl()
449 throw uno::RuntimeException(); in InsertVisualCache_Impl()
451 uno::Sequence< uno::Any > aArgs( 2 ); in InsertVisualCache_Impl()
455 uno::Reference< container::XNameContainer > xNameContainer( in InsertVisualCache_Impl()
459 uno::UNO_QUERY ); in InsertVisualCache_Impl()
462 throw uno::RuntimeException(); in InsertVisualCache_Impl()
464 uno::Reference< io::XSeekable > xCachedSeek( xCachedVisualRepresentation, uno::UNO_QUERY_THROW ); in InsertVisualCache_Impl()
468 uno::Reference < io::XStream > xTempFile( in InsertVisualCache_Impl()
470 uno::UNO_QUERY_THROW ); in InsertVisualCache_Impl()
472 uno::Reference< io::XSeekable > xTempSeek( xTempFile, uno::UNO_QUERY_THROW ); in InsertVisualCache_Impl()
473 uno::Reference< io::XOutputStream > xTempOutStream = xTempFile->getOutputStream(); in InsertVisualCache_Impl()
478 uno::Reference< io::XInputStream > xInCacheStream = xCachedVisualRepresentation->getInputStream(); in InsertVisualCache_Impl()
480 throw uno::RuntimeException(); in InsertVisualCache_Impl()
483 uno::Sequence< sal_Int8 > aData( 4 ); in InsertVisualCache_Impl()
489 uno::Sequence< sal_Int8 > aSigData( 2 ); in InsertVisualCache_Impl()
582 xNameContainer->replaceByName( aCacheName, uno::makeAny( xTempFile ) ); in InsertVisualCache_Impl()
584 xNameContainer->insertByName( aCacheName, uno::makeAny( xTempFile ) ); in InsertVisualCache_Impl()
586 uno::Reference< embed::XTransactedObject > xTransacted( xNameContainer, uno::UNO_QUERY ); in InsertVisualCache_Impl()
588 throw uno::RuntimeException(); in InsertVisualCache_Impl()
594 void OleEmbeddedObject::RemoveVisualCache_Impl( const uno::Reference< io::XStream >& xTargetStream ) in RemoveVisualCache_Impl()
595 throw ( uno::Exception ) in RemoveVisualCache_Impl()
599 throw uno::RuntimeException(); in RemoveVisualCache_Impl()
601 uno::Sequence< uno::Any > aArgs( 2 ); in RemoveVisualCache_Impl()
604 uno::Reference< container::XNameContainer > xNameContainer( in RemoveVisualCache_Impl()
608 uno::UNO_QUERY ); in RemoveVisualCache_Impl()
611 throw uno::RuntimeException(); in RemoveVisualCache_Impl()
621 uno::Reference< embed::XTransactedObject > xTransacted( xNameContainer, uno::UNO_QUERY ); in RemoveVisualCache_Impl()
623 throw uno::RuntimeException(); in RemoveVisualCache_Impl()
646 uno::Reference< io::XInputStream > xStream; in HasVisReplInStream()
654 uno::Reference < ucb::XSimpleFileAccess > xTempAccess( in HasVisReplInStream()
657 uno::UNO_QUERY ); in HasVisReplInStream()
660 throw uno::RuntimeException(); // TODO: in HasVisReplInStream()
664 catch( uno::Exception& ) in HasVisReplInStream()
675 uno::Sequence< uno::Any > aArgs( 2 ); in HasVisReplInStream()
678 uno::Reference< container::XNameContainer > xNameContainer( in HasVisReplInStream()
682 uno::UNO_QUERY ); in HasVisReplInStream()
694 catch( uno::Exception& ) in HasVisReplInStream()
708 uno::Reference< io::XStream > OleEmbeddedObject::TryToRetrieveCachedVisualRepresentation_Impl( in TryToRetrieveCachedVisualRepresentation_Impl()
709 const uno::Reference< io::XStream >& xStream, in TryToRetrieveCachedVisualRepresentation_Impl()
713 uno::Reference< io::XStream > xResult; in TryToRetrieveCachedVisualRepresentation_Impl()
719 uno::Reference< container::XNameContainer > xNameContainer; in TryToRetrieveCachedVisualRepresentation_Impl()
720 uno::Sequence< uno::Any > aArgs( 2 ); in TryToRetrieveCachedVisualRepresentation_Impl()
725 xNameContainer = uno::Reference< container::XNameContainer >( in TryToRetrieveCachedVisualRepresentation_Impl()
729 uno::UNO_QUERY ); in TryToRetrieveCachedVisualRepresentation_Impl()
731 catch( uno::Exception& ) in TryToRetrieveCachedVisualRepresentation_Impl()
740 uno::Reference< io::XStream > xCachedCopyStream; in TryToRetrieveCachedVisualRepresentation_Impl()
750 catch( uno::Exception& ) in TryToRetrieveCachedVisualRepresentation_Impl()
766 catch( uno::Exception& ) in TryToRetrieveCachedVisualRepresentation_Impl()
778uno::Reference< embed::XClassifiedObject > xClassified( xNameContainer, uno::UNO_QUERY_THROW ); in TryToRetrieveCachedVisualRepresentation_Impl()
779 uno::Sequence< sal_Int8 > aClassID; in TryToRetrieveCachedVisualRepresentation_Impl()
785 uno::Reference< io::XOutputStream > xOutputStream = xStream->getOutputStream(); in TryToRetrieveCachedVisualRepresentation_Impl()
786 uno::Reference< io::XTruncate > xTruncate( xOutputStream, uno::UNO_QUERY_THROW ); in TryToRetrieveCachedVisualRepresentation_Impl()
788 uno::Reference< io::XInputStream > xOrigInputStream; in TryToRetrieveCachedVisualRepresentation_Impl()
794 uno::Reference< io::XSeekable > xOrigSeekable( xOrigInputStream, uno::UNO_QUERY ); in TryToRetrieveCachedVisualRepresentation_Impl()
798 uno::Reference< lang::XComponent > xNameContDisp( xNameContainer, uno::UNO_QUERY_THROW ); in TryToRetrieveCachedVisualRepresentation_Impl()
823 catch( uno::Exception& ) in TryToRetrieveCachedVisualRepresentation_Impl()
836 catch( uno::Exception& ) in TryToRetrieveCachedVisualRepresentation_Impl()
845 void OleEmbeddedObject::SwitchOwnPersistence( const uno::Reference< embed::XStorage >& xNewParentSt… in SwitchOwnPersistence()
846 const uno::Reference< io::XStream >& xNewObjectStream, in SwitchOwnPersistence()
856 uno::Reference< lang::XComponent > xComponent( m_xObjectStream, uno::UNO_QUERY ); in SwitchOwnPersistence()
861 catch ( uno::Exception& ) in SwitchOwnPersistence()
871 void OleEmbeddedObject::SwitchOwnPersistence( const uno::Reference< embed::XStorage >& xNewParentSt… in SwitchOwnPersistence()
879uno::Reference< io::XStream > xNewOwnStream = xNewParentStorage->openStreamElement( aNewName, nStr… in SwitchOwnPersistence()
898 catch( uno::Exception& ) in SaveObject_Impl()
942 catch( uno::Exception& ) in OnShowWindow_Impl()
982 m_xCachedVisualRepresentation = uno::Reference< io::XStream >(); in OnViewChanged_Impl()
1020 uno::Reference< embed::XOptimizedStorage > xOptParStorage( m_xParentStorage, uno::UNO_QUERY ); in GetTempURL_Impl()
1028 uno::Reference< io::XInputStream > xInStream = m_xObjectStream->getInputStream(); in GetTempURL_Impl()
1048 m_xClosePreventer = uno::Reference< util::XCloseListener >( in CreateOleComponent_Impl()
1050 uno::UNO_QUERY ); in CreateOleComponent_Impl()
1062 throw uno::RuntimeException(); in CreateOleComponentAndLoad_Impl()
1071 throw uno::RuntimeException(); // TODO in CreateOleComponentAndLoad_Impl()
1083 throw uno::RuntimeException(); in CreateOleComponentFromClipboard_Impl()
1094 uno::Reference< io::XOutputStream > OleEmbeddedObject::GetStreamForSaving() in GetStreamForSaving()
1097 throw uno::RuntimeException(); //TODO: in GetStreamForSaving()
1099 uno::Reference< io::XOutputStream > xOutStream = m_xObjectStream->getOutputStream(); in GetStreamForSaving()
1103 uno::Reference< io::XTruncate > xTruncate( xOutStream, uno::UNO_QUERY ); in GetStreamForSaving()
1105 throw uno::RuntimeException(); //TODO: in GetStreamForSaving()
1113 void OleEmbeddedObject::StoreObjectToStream( uno::Reference< io::XOutputStream > xOutStream ) in StoreObjectToStream()
1114 throw ( uno::Exception ) in StoreObjectToStream()
1122 throw uno::RuntimeException(); in StoreObjectToStream()
1125 uno::Reference < ucb::XSimpleFileAccess > xTempAccess( in StoreObjectToStream()
1128 uno::UNO_QUERY ); in StoreObjectToStream()
1131 throw uno::RuntimeException(); // TODO: in StoreObjectToStream()
1133 uno::Reference< io::XInputStream > xTempInStream = xTempAccess->openFileRead( m_aTempURL ); in StoreObjectToStream()
1141 uno::Reference< io::XTruncate > xTrunc( xOutStream, uno::UNO_QUERY ); in StoreObjectToStream()
1143 throw uno::RuntimeException(); //TODO: in StoreObjectToStream()
1158 const uno::Reference< embed::XStorage >& xStorage, in StoreToLocation_Impl()
1160 const uno::Sequence< beans::PropertyValue >& /*lArguments*/, in StoreToLocation_Impl()
1161 const uno::Sequence< beans::PropertyValue >& lObjArgs, in StoreToLocation_Impl()
1163 throw ( uno::Exception ) in StoreToLocation_Impl()
1172 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in StoreToLocation_Impl()
1178 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in StoreToLocation_Impl()
1186 uno::Reference< io::XStream > xCachedVisualRepresentation; in StoreToLocation_Impl()
1199 xCachedVisualRepresentation = uno::Reference< io::XStream >(); in StoreToLocation_Impl()
1207 uno::Reference< io::XStream > xTargetStream; in StoreToLocation_Impl()
1224uno::Reference< embed::XOptimizedStorage > xSourceOptStor( m_xParentStorage, uno::UNO_QUERY_THROW … in StoreToLocation_Impl()
1225 uno::Reference< embed::XOptimizedStorage > xTargetOptStor( xStorage, uno::UNO_QUERY_THROW ); in StoreToLocation_Impl()
1229 catch( uno::Exception& ) in StoreToLocation_Impl()
1260 uno::Reference< io::XOutputStream > xOutStream = xTargetStream->getOutputStream(); in StoreToLocation_Impl()
1273 uno::Reference< io::XStream > xTmpCVRepresentation = in StoreToLocation_Impl()
1314 uno::Reference< io::XSeekable > xCachedSeek( xCachedVisualRepresentation, uno::UNO_QUERY ); in StoreToLocation_Impl()
1357 uno::Reference< lang::XComponent > xComp( xTargetStream, uno::UNO_QUERY ); in StoreToLocation_Impl()
1362 } catch( uno::Exception& ) in StoreToLocation_Impl()
1371 const uno::Reference< embed::XStorage >& xStorage, in setPersistentEntry()
1374 const uno::Sequence< beans::PropertyValue >& lArguments, in setPersistentEntry()
1375 const uno::Sequence< beans::PropertyValue >& lObjArgs ) in setPersistentEntry()
1379 uno::Exception, in setPersistentEntry()
1380 uno::RuntimeException ) in setPersistentEntry()
1385 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in setPersistentEntry()
1407 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in setPersistentEntry()
1412 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in setPersistentEntry()
1427 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in setPersistentEntry()
1437 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in setPersistentEntry()
1440 uno::Reference< container::XNameAccess > xNameAccess( xStorage, uno::UNO_QUERY ); in setPersistentEntry()
1442 throw uno::RuntimeException(); //TODO in setPersistentEntry()
1485 catch( uno::Exception& ) in setPersistentEntry()
1534 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in setPersistentEntry()
1556 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in setPersistentEntry()
1574 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in setPersistentEntry()
1581 void SAL_CALL OleEmbeddedObject::storeToEntry( const uno::Reference< embed::XStorage >& xStorage, in storeToEntry()
1583 const uno::Sequence< beans::PropertyValue >& lArguments, in storeToEntry()
1584 const uno::Sequence< beans::PropertyValue >& lObjArgs ) in storeToEntry()
1588 uno::Exception, in storeToEntry()
1589 uno::RuntimeException ) in storeToEntry()
1594 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in storeToEntry()
1615 void SAL_CALL OleEmbeddedObject::storeAsEntry( const uno::Reference< embed::XStorage >& xStorage, in storeAsEntry()
1617 const uno::Sequence< beans::PropertyValue >& lArguments, in storeAsEntry()
1618 const uno::Sequence< beans::PropertyValue >& lObjArgs ) in storeAsEntry()
1622 uno::Exception, in storeAsEntry()
1623 uno::RuntimeException ) in storeAsEntry()
1628 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in storeAsEntry()
1651 uno::Exception, in saveCompleted()
1652 uno::RuntimeException ) in saveCompleted()
1657 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in saveCompleted()
1674 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in saveCompleted()
1687 throw uno::RuntimeException(); // TODO: broken internal information in saveCompleted()
1700 uno::Reference< lang::XComponent > xComponent( m_xNewObjectStream, uno::UNO_QUERY ); in saveCompleted()
1705 catch ( uno::Exception& ) in saveCompleted()
1712 m_xNewObjectStream = uno::Reference< io::XStream >(); in saveCompleted()
1713 m_xNewParentStorage = uno::Reference< embed::XStorage >(); in saveCompleted()
1717 m_xNewCachedVisRepl = uno::Reference< io::XStream >(); in saveCompleted()
1731 catch( uno::Exception& ) in saveCompleted()
1752 uno::RuntimeException ) in hasEntry()
1755 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in hasEntry()
1770 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in hasEntry()
1781 uno::RuntimeException ) in getEntryName()
1784 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in getEntryName()
1800 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in getEntryName()
1806 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in getEntryName()
1816 uno::Exception, in storeOwn()
1817 uno::RuntimeException ) in storeOwn()
1822 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in storeOwn()
1845 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in storeOwn()
1851 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in storeOwn()
1871 uno::Reference< io::XOutputStream > xOutStream = m_xObjectStream->getOutputStream(); in storeOwn()
1881 uno::Reference< io::XOutputStream > xOutStream = GetStreamForSaving(); in storeOwn()
1888 uno::Reference< io::XOutputStream > xOutStream = GetStreamForSaving(); in storeOwn()
1894 m_xCachedVisualRepresentation = uno::Reference< io::XStream >(); in storeOwn()
1932 catch( uno::Exception& ) in storeOwn()
1949 uno::RuntimeException ) in isReadonly()
1952 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in isReadonly()
1968 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in isReadonly()
1974 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in isReadonly()
1981 const uno::Sequence< beans::PropertyValue >& lArguments, in reload()
1982 const uno::Sequence< beans::PropertyValue >& lObjArgs ) in reload()
1986 uno::Exception, in reload()
1987 uno::RuntimeException ) in reload()
1990 uno::Reference< embed::XEmbedPersist > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in reload()
2009 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in reload()
2015 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in reload()
2024 void SAL_CALL OleEmbeddedObject::breakLink( const uno::Reference< embed::XStorage >& xStorage, in breakLink()
2029 uno::Exception, in breakLink()
2030 uno::RuntimeException ) in breakLink()
2033 uno::Reference< embed::XLinkageSupport > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in breakLink()
2048 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in breakLink()
2053 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), in breakLink()
2062 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in breakLink()
2071 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in breakLink()
2087 catch ( uno::Exception& ) in breakLink()
2099 catch( uno::Exception& ) in breakLink()
2146 uno::RuntimeException ) in isLink()
2149 uno::Reference< embed::XLinkageSupport > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in isLink()
2167 uno::Exception, in getLinkURL()
2168 uno::RuntimeException ) in getLinkURL()
2171 uno::Reference< embed::XLinkageSupport > xWrappedObject( m_xWrappedObject, uno::UNO_QUERY ); in getLinkURL()
2186 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in getLinkURL()
2191 uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ) ); in getLinkURL()