Lines Matching refs:xStm

1024 	SotStorageStreamRef xStm( new SotStorageStream( String() ) );  in SetObject()  local
1026 xStm->SetVersion( SOFFICE_FILEFORMAT_50 ); in SetObject()
1028 if( pUserObject && WriteObject( xStm, pUserObject, nUserObjectId, rFlavor ) ) in SetObject()
1030 const sal_uInt32 nLen = xStm->Seek( STREAM_SEEK_TO_END ); in SetObject()
1033 xStm->Seek( STREAM_SEEK_TO_BEGIN ); in SetObject()
1034 xStm->Read( aSeq.getArray(), nLen ); in SetObject()
1809 SotStorageStreamRef xStm; in GetBitmapEx() local
1811 bool bRet(GetSotStorageStream(rFlavor, xStm)); in GetBitmapEx()
1817 bRet = GetSotStorageStream(aSubstFlavor, xStm); in GetBitmapEx()
1823 bRet = GetSotStorageStream(aSubstFlavor, xStm); in GetBitmapEx()
1832 ::vcl::PNGReader aPNGReader(*xStm); in GetBitmapEx()
1844 ReadDIBV5(aBitmap, aMask, *xStm); in GetBitmapEx()
1856 bRet = (ERRCODE_NONE == xStm->GetError() && !rBmpEx.IsEmpty()); in GetBitmapEx()
1904 SotStorageStreamRef xStm; in GetGDIMetaFile() local
1908 if( GetSotStorageStream( rFlavor, xStm ) ) in GetGDIMetaFile()
1910 *xStm >> rMtf; in GetGDIMetaFile()
1911 bRet = ( xStm->GetError() == ERRCODE_NONE ); in GetGDIMetaFile()
1917 GetSotStorageStream( aSubstFlavor, xStm ) ) in GetGDIMetaFile()
1921 if( GraphicConverter::Import( *xStm, aGraphic ) == ERRCODE_NONE ) in GetGDIMetaFile()
1931 GetSotStorageStream( aSubstFlavor, xStm ) ) in GetGDIMetaFile()
1935 if( GraphicConverter::Import( *xStm, aGraphic ) == ERRCODE_NONE ) in GetGDIMetaFile()
2001 SotStorageStreamRef xStm; in GetGraphic() local
2003 if( GetSotStorageStream( rFlavor, xStm ) ) in GetGraphic()
2005 *xStm >> rGraphic; in GetGraphic()
2006 bRet = ( xStm->GetError() == ERRCODE_NONE ); in GetGraphic()
2025 SotStorageStreamRef xStm; in GetImageMap() local
2026 sal_Bool bRet = GetSotStorageStream( rFlavor, xStm ); in GetImageMap()
2030 rIMap.Read( *xStm, String() ); in GetImageMap()
2031 bRet = ( xStm->GetError() == ERRCODE_NONE ); in GetImageMap()
2213 SotStorageStreamRef xStm; in GetINetImage() local
2214 sal_Bool bRet = GetSotStorageStream( rFlavor, xStm ); in GetINetImage()
2217 bRet = rINtImg.Read( *xStm, SotExchange::GetFormat( rFlavor ) ); in GetINetImage()
2236 SotStorageStreamRef xStm; in GetFileList() local
2245 if( GetSotStorageStream( aFlavor, xStm ) ) in GetFileList()
2251 while( xStm->ReadLine( aByteString ) ) in GetFileList()
2258 bRet = ( ( *xStm >> rFileList ).GetError() == ERRCODE_NONE ); in GetFileList()