Home
last modified time | relevance | path

Searched refs:rStg (Results 1 – 14 of 14) sorted by relevance

/trunk/main/sfx2/source/doc/
H A Ddocfilt.cxx136 String SfxFilter::GetTypeFromStorage( const SotStorage& rStg ) in GetTypeFromStorage() argument
139 if ( rStg.IsStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "WordDocument" ) ) ) ) in GetTypeFromStorage()
141 …if ( rStg.IsStream( String::CreateFromAscii("0Table" ) ) || rStg.IsStream( String::CreateFromAscii… in GetTypeFromStorage()
146 else if ( rStg.IsStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "Book" ) ) ) ) in GetTypeFromStorage()
150 else if ( rStg.IsStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "Workbook" ) ) ) ) in GetTypeFromStorage()
154 …else if ( rStg.IsStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "PowerPoint Document… in GetTypeFromStorage()
158 …else if ( rStg.IsStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "Equation Native" ) … in GetTypeFromStorage()
164 sal_Int32 nClipId = ((SotStorage&)rStg).GetFormat(); in GetTypeFromStorage()
/trunk/main/sot/source/sdstor/
H A Dstgole.cxx39 ( BaseStorage& rStg, const String& rName, sal_Bool bWr ) in StgInternalStream() argument
45 pStrm = rStg.OpenStream( rName, nMode ); in StgInternalStream()
48 SetError( rStg.GetError() ); in StgInternalStream()
103 StgCompObjStream::StgCompObjStream( BaseStorage& rStg, sal_Bool bWr ) in StgCompObjStream() argument
104 …: StgInternalStream( rStg, String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "\1CompObj" ) ), b… in StgCompObjStream()
181 StgOleStream::StgOleStream( BaseStorage& rStg, sal_Bool bWr ) in StgOleStream() argument
182 … : StgInternalStream( rStg, String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "\1Ole" ) ), bWr ) in StgOleStream()
H A Dstgdir.cxx1006 StgDirEntry* StgDirStrm::Find( StgDirEntry& rStg, const String& rName ) in Find() argument
1008 if( rStg.pDown ) in Find()
1019 return (StgDirEntry*) rStg.pDown->Find( &aTest ); in Find()
1028 ( StgDirEntry& rStg, const String& rName, StgEntryType eType ) in Create() argument
1038 StgDirEntry* pRes = Find( rStg, rName ); in Create()
1055 if( StgAvlNode::Insert( (StgAvlNode**) &rStg.pDown, pRes ) ) in Create()
1057 pRes->pUp = &rStg; in Create()
1073 sal_Bool StgDirStrm::Rename( StgDirEntry& rStg, const String& rOld, const String& rNew ) in Rename() argument
1075 StgDirEntry* p = Find( rStg, rOld ); in Rename()
1079 if( !StgAvlNode::Remove( (StgAvlNode**) &rStg.pDown, p, sal_False ) ) in Rename()
[all …]
H A Dstgdir.hxx125 StgIterator( StgDirEntry& rStg ) : StgAvlIterator( rStg.pDown ) {} in StgIterator() argument
/trunk/main/sw/source/core/sw3io/
H A Dswacorr.cxx51 sal_Bool SwAutoCorrect::GetLongText( const uno::Reference < embed::XStorage >& rStg, const String& … in GetLongText() argument
54 if (rStg.is()) in GetLongText()
57 SwXMLTextBlocks aBlk( rStg, rFileName ); in GetLongText()
61 ASSERT ( rStg.is(), "Someone passed SwAutoCorrect::GetLongText a dud storage!"); in GetLongText()
68 sal_Bool SwAutoCorrect::PutText( const uno::Reference < embed::XStorage >& rStg, const String& rFi… in PutText() argument
78 SwXMLTextBlocks aBlk( rStg, rFileName ); in PutText()
/trunk/main/sw/source/filter/basflt/
H A Diodetect.cxx141 …const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rStg, const SfxFilter& r… in IsValidStgFilter() argument
146 sal_uLong nStgFmtId = SotStorage::GetFormatID( rStg ); in IsValidStgFilter()
147 bRet = rStg->isStreamElement( ::rtl::OUString::createFromAscii("content.xml") ); in IsValidStgFilter()
158 sal_Bool SwIoSystem::IsValidStgFilter(SotStorage& rStg, const SfxFilter& rFilter) in IsValidStgFilter() argument
160 sal_uLong nStgFmtId = rStg.GetFormat(); in IsValidStgFilter()
168 sal_Bool bRet = SVSTREAM_OK == rStg.GetError() && in IsValidStgFilter()
170 ( rStg.IsContained( SwIoSystem::GetSubStorageName( rFilter )) ); in IsValidStgFilter()
178 bRet = !((rStg.IsContained( String::CreateFromAscii("0Table" )) || in IsValidStgFilter()
179 rStg.IsContained( String::CreateFromAscii("1Table" ))) ^ in IsValidStgFilter()
184 rStg.OpenSotStream(String::CreateFromAscii("WordDocument"), in IsValidStgFilter()
H A Dshellio.cxx457 SwReader::SwReader( const uno::Reference < embed::XStorage > &rStg, const String& rFilename, SwPaM … in SwReader() argument
458 : SwDocFac(rPam.GetDoc()), pStrm(0), xStg( rStg ), pMedium(0), pCrsr(&rPam), aFileName(rFilename) in SwReader()
783 SwWriter::SwWriter( const uno::Reference < embed::XStorage >& rStg, SwDoc &rDocument) in SwWriter() argument
784 : pStrm(0), xStg( rStg ), pMedium(0), pOutPam(0), pShell(0), rDoc(rDocument), bWriteAll(true) in SwWriter()
/trunk/main/editeng/source/misc/
H A Dsvxacorr.cxx2089 if( rStg.Is() && rStg->IsStream( sStrmName ) ) in LoadXMLExceptList_Imp()
2096 rStg.Clear(); in LoadXMLExceptList_Imp()
2172 if( rStg.Is() ) in SaveExceptList_Imp()
2177 rStg->Remove( sStrmName ); in SaveExceptList_Imp()
2178 rStg->Commit(); in SaveExceptList_Imp()
2225 rStg->Commit(); in SaveExceptList_Imp()
2228 rStg->Remove( sStrmName ); in SaveExceptList_Imp()
2229 rStg->Commit(); in SaveExceptList_Imp()
2651 rStg.Commit(); in MakeBlocklist_Imp()
2699 rStg.Remove( sStrmName ); in MakeBlocklist_Imp()
[all …]
/trunk/main/editeng/inc/editeng/
H A Dsvxacorr.hxx146 SotStorageRef& rStg);
149 SotStorageRef& rStg,
152 sal_Bool MakeBlocklist_Imp( SotStorage& rStg );
226 …const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rStg, const String& rFil…
238 …const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rStg, const String& rFil…
/trunk/main/sw/source/filter/writer/
H A Dwriter.cxx584 sal_uLong StgWriter::Write( SwPaM& rPaM, SvStorage& rStg, const String* pFName ) in Write() argument
587 pStg = &rStg; in Write()
604 sal_uLong StgWriter::Write( SwPaM& rPaM, const uno::Reference < embed::XStorage >& rStg, const Stri… in Write() argument
608 xStg = rStg; in Write()
/trunk/main/sw/source/core/swg/
H A DSwXMLTextBlocks.cxx109 SwXMLTextBlocks::SwXMLTextBlocks( const uno::Reference < embed::XStorage >& rStg, const String& rNa… in SwXMLTextBlocks() argument
124 InitBlockMode ( rStg ); in SwXMLTextBlocks()
/trunk/main/sw/inc/
H A Diodetect.hxx114 …const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rStg, const SfxFilter& r…
/trunk/main/sfx2/inc/sfx2/
H A Ddocfilt.hxx107 static String GetTypeFromStorage( const SotStorage& rStg );
/trunk/main/oox/source/export/
H A Dooxml-export-notes.txt64 …#5 0x00002aaaae70b793 in StgWriter::Write (this=0x2aaab3d6a870, rPaM=@0x2b3802a2b640, rStg=@0x2aa…

Completed in 65 milliseconds