Lines Matching refs:xStm
1055 SotStorageStreamRef xStm( new SotStorageStream( String() ) ); in SetObject() local
1057 xStm->SetVersion( SOFFICE_FILEFORMAT_50 ); in SetObject()
1059 if( pUserObject && WriteObject( xStm, pUserObject, nUserObjectId, rFlavor ) ) in SetObject()
1061 const sal_uInt32 nLen = xStm->Seek( STREAM_SEEK_TO_END ); in SetObject()
1064 xStm->Seek( STREAM_SEEK_TO_BEGIN ); in SetObject()
1065 xStm->Read( aSeq.getArray(), nLen ); in SetObject()
1840 SotStorageStreamRef xStm; in GetBitmapEx() local
1842 bool bRet(GetSotStorageStream(rFlavor, xStm)); in GetBitmapEx()
1848 bRet = GetSotStorageStream(aSubstFlavor, xStm); in GetBitmapEx()
1854 bRet = GetSotStorageStream(aSubstFlavor, xStm); in GetBitmapEx()
1863 ::vcl::PNGReader aPNGReader(*xStm); in GetBitmapEx()
1875 ReadDIBV5(aBitmap, aMask, *xStm); in GetBitmapEx()
1887 bRet = (ERRCODE_NONE == xStm->GetError() && !rBmpEx.IsEmpty()); in GetBitmapEx()
1935 SotStorageStreamRef xStm; in GetGDIMetaFile() local
1939 if( GetSotStorageStream( rFlavor, xStm ) ) in GetGDIMetaFile()
1941 *xStm >> rMtf; in GetGDIMetaFile()
1942 bRet = ( xStm->GetError() == ERRCODE_NONE ); in GetGDIMetaFile()
1948 GetSotStorageStream( aSubstFlavor, xStm ) ) in GetGDIMetaFile()
1952 if( GraphicConverter::Import( *xStm, aGraphic ) == ERRCODE_NONE ) in GetGDIMetaFile()
1962 GetSotStorageStream( aSubstFlavor, xStm ) ) in GetGDIMetaFile()
1966 if( GraphicConverter::Import( *xStm, aGraphic ) == ERRCODE_NONE ) in GetGDIMetaFile()
1976 GetSotStorageStream( aSubstFlavor, xStm ) ) in GetGDIMetaFile()
1980 if( GraphicConverter::Import( *xStm, aGraphic ) == ERRCODE_NONE ) in GetGDIMetaFile()
2046 SotStorageStreamRef xStm; in GetGraphic() local
2048 if( GetSotStorageStream( rFlavor, xStm ) ) in GetGraphic()
2050 *xStm >> rGraphic; in GetGraphic()
2051 bRet = ( xStm->GetError() == ERRCODE_NONE ); in GetGraphic()
2070 SotStorageStreamRef xStm; in GetImageMap() local
2071 sal_Bool bRet = GetSotStorageStream( rFlavor, xStm ); in GetImageMap()
2075 rIMap.Read( *xStm, String() ); in GetImageMap()
2076 bRet = ( xStm->GetError() == ERRCODE_NONE ); in GetImageMap()
2258 SotStorageStreamRef xStm; in GetINetImage() local
2259 sal_Bool bRet = GetSotStorageStream( rFlavor, xStm ); in GetINetImage()
2262 bRet = rINtImg.Read( *xStm, SotExchange::GetFormat( rFlavor ) ); in GetINetImage()
2281 SotStorageStreamRef xStm; in GetFileList() local
2290 if( GetSotStorageStream( aFlavor, xStm ) ) in GetFileList()
2296 while( xStm->ReadLine( aByteString ) ) in GetFileList()
2303 bRet = ( ( *xStm >> rFileList ).GetError() == ERRCODE_NONE ); in GetFileList()