/aoo42x/main/sc/source/filter/ftools/ |
H A D | ftools.cxx | 170 SotStorageRef ScfTools::OpenStorageRead( SotStorageRef xStrg, const String& rStrgName ) in OpenStorageRead() argument 173 if( xStrg.Is() && xStrg->IsContained( rStrgName ) ) in OpenStorageRead() 174 xSubStrg = xStrg->OpenSotStorage( rStrgName, STREAM_STD_READ ); in OpenStorageRead() 178 SotStorageRef ScfTools::OpenStorageWrite( SotStorageRef xStrg, const String& rStrgName ) in OpenStorageWrite() argument 181 if( xStrg.Is() ) in OpenStorageWrite() 182 xSubStrg = xStrg->OpenSotStorage( rStrgName, STREAM_STD_WRITE ); in OpenStorageWrite() 189 if( xStrg.Is() && xStrg->IsContained( rStrmName ) && xStrg->IsStream( rStrmName ) ) in OpenStorageStreamRead() 190 xStrm = xStrg->OpenSotStream( rStrmName, STREAM_STD_READ ); in OpenStorageStreamRead() 196 …DBG_ASSERT( !xStrg || !xStrg->IsContained( rStrmName ), "ScfTools::OpenStorageStreamWrite - stream… in OpenStorageStreamWrite() 198 if( xStrg.Is() ) in OpenStorageStreamWrite() [all …]
|
/aoo42x/main/oox/source/dump/ |
H A D | pptxdumper.cxx | 93 StorageRef xStrg( new ::oox::ole::OleStorage( getContext(), rxStrm, false ) ); in implDumpStream() local 94 VbaProjectStorageObject( *this, xStrg, rSysFileName ).dump(); in implDumpStream() 98 StorageRef xStrg( new ::oox::ole::OleStorage( getContext(), rxStrm, false ) ); in implDumpStream() local 99 OleStorageObject( *this, xStrg, rSysFileName ).dump(); in implDumpStream() 103 StorageRef xStrg( new ::oox::ole::OleStorage( getContext(), rxStrm, true ) ); in implDumpStream() local 104 ActiveXStorageObject( *this, xStrg, rSysFileName ).dump(); in implDumpStream() 127 StorageRef xStrg( new ZipStorage( rxContext, rxInStrm ) ); in Dumper() local 129 …ConfigRef xCfg( new Config( DUMP_PPTX_CONFIG_ENVVAR, rxContext, xStrg, rSysFileName, aMediaDesc ) … in Dumper()
|
H A D | xlsbdumper.cxx | 2269 StorageRef xStrg( new ::oox::ole::OleStorage( getContext(), rxStrm, false ) ); in implDumpStream() local 2270 VbaProjectStorageObject( *this, xStrg, rSysFileName ).dump(); in implDumpStream() 2274 StorageRef xStrg( new ::oox::ole::OleStorage( getContext(), rxStrm, false ) ); in implDumpStream() local 2275 OleStorageObject( *this, xStrg, rSysFileName ).dump(); in implDumpStream() 2293 StorageRef xStrg( new ::oox::ole::OleStorage( getContext(), rxStrm, true ) ); in implDumpStream() local 2294 ActiveXStorageObject( *this, xStrg, rSysFileName ).dump(); in implDumpStream() 2317 StorageRef xStrg( new ZipStorage( getContext(), rxInStrm ) ); in Dumper() local 2319 …ConfigRef xCfg( new Config( DUMP_XLSB_CONFIG_ENVVAR, rxContext, xStrg, rSysFileName, aMediaDesc ) … in Dumper()
|
H A D | dumperbase.cxx | 2116 StorageRef xStrg = mxStrg->openSubStorage( *maIt, false ); in isStorage() local 2117 return xStrg.get() && xStrg->isStorage(); in isStorage()
|
H A D | biffdumper.cxx | 4565 StorageRef xStrg( new ::oox::ole::OleStorage( rxContext, rxInStrm, true ) ); in Dumper() local 4567 …ConfigRef xCfg( new Config( DUMP_BIFF_CONFIG_ENVVAR, rxContext, xStrg, rSysFileName, aMediaDesc ) … in Dumper()
|
/aoo42x/main/sc/source/filter/excel/ |
H A D | xlroot.cxx | 254 SotStorageRef XclRoot::OpenStorage( SotStorageRef xStrg, const String& rStrgName ) const in OpenStorage() argument 257 ScfTools::OpenStorageWrite( xStrg, rStrgName ) : in OpenStorage() 258 ScfTools::OpenStorageRead( xStrg, rStrgName ); in OpenStorage() 266 SotStorageStreamRef XclRoot::OpenStream( SotStorageRef xStrg, const String& rStrmName ) const in OpenStream() argument 269 ScfTools::OpenStorageStreamWrite( xStrg, rStrmName ) : in OpenStream() 270 ScfTools::OpenStorageStreamRead( xStrg, rStrmName ); in OpenStream()
|
/aoo42x/main/sc/source/filter/inc/ |
H A D | ftools.hxx | 293 static SotStorageRef OpenStorageRead( SotStorageRef xStrg, const String& rStrgName ); 295 static SotStorageRef OpenStorageWrite( SotStorageRef xStrg, const String& rStrgName ); 298 … static SotStorageStreamRef OpenStorageStreamRead( SotStorageRef xStrg, const String& rStrmName ); 300 … static SotStorageStreamRef OpenStorageStreamWrite( SotStorageRef xStrg, const String& rStrmName );
|
H A D | xlroot.hxx | 207 SotStorageRef OpenStorage( SotStorageRef xStrg, const String& rStrgName ) const; 211 SotStorageStreamRef OpenStream( SotStorageRef xStrg, const String& rStrmName ) const;
|