/trunk/main/filter/source/msfilter/ |
H A D | dffpropset.cxx | 1110 InitializePropSet( aHd.nRecType ); in ReadPropSet() 1122 sal_uInt32 nRecType, nContent; in ReadPropSet() local 1128 nRecType = nTmp & 0x3fff; in ReadPropSet() 1130 if ( nRecType > 0x3ff ) in ReadPropSet() 1132 if ( ( nRecType & 0x3f ) == 0x3f ) in ReadPropSet() 1159 …bSetProperty = !bSetUninitializedOnly || ( !IsProperty( nRecType ) || !IsHardAttribute( nRecType )… in ReadPropSet() 1172 if ( ( nRecType == DFF_Prop_pVertices ) || ( nRecType == DFF_Prop_pSegmentInfo ) in ReadPropSet() 1173 … || ( nRecType == DFF_Prop_fillShadeColors ) || ( nRecType == DFF_Prop_lineDashStyle ) in ReadPropSet() 1174 … || ( nRecType == DFF_Prop_pWrapPolygonVertices ) || ( nRecType == DFF_Prop_connectorPoints ) in ReadPropSet() 1175 || ( nRecType == DFF_Prop_Handles ) || ( nRecType == DFF_Prop_pFormulas ) in ReadPropSet() [all …]
|
H A D | svdfppt.cxx | 637 || aStrHd.nRecType == PPT_PST_CString) in ReadString() 847 switch ( aClientDataHd.nRecType ) in ProcessObj() 1576 if ( aDocHd.nRecType == PPT_PST_Document && aDocAtomHd.nRecType == PPT_PST_DocumentAtom ) in SdrPowerPointImport() 2879 switch( aCommentHd.nRecType ) in ImportComment10() 2962 switch ( aHd.nRecType ) in ImportPage() 3361 switch ( aHd.nRecType ) in ImportHeaderFooterContainer() 3539 switch ( aHd.nRecType ) in PPTExtParaProv() 3616 switch ( aHd.nRecType ) in PPTExtParaProv() 6816 if ( !aExtParaHd.nRecType ) in PPTTextObj() 7000 switch ( aTextHd.nRecType ) in PPTTextObj() [all …]
|
H A D | msdffimp.cxx | 235 if ( aRecHd.nRecType == DFF_msofbtDggContainer ) in SetDefaultPropSet() 3147 if ( pHd->nRecType == nRecId ) in GetRecordHeader() 3159 if ( pHd->nRecType == nRecId ) in GetRecordHeader() 3163 if ( pHd->nRecType != nRecId ) in GetRecordHeader() 3370 if ( aHd.nRecType == nRecId ) in SeekToRec() 3400 if ( aHd.nRecType == nRecId1 || aHd.nRecType == nRecId2 ) in SeekToRec2() 3953 if( DFF_msofbtBSE == aHd.nRecType ) in ImportGraphic() 6756 rRec.nRecType, in ReadCommonRecordHeader() 7001 sal_uInt32 nRecType; in ConvertToOle2() local 7012 rStm >> nRecType; in ConvertToOle2() [all …]
|
H A D | escherex.cxx | 106 EscherExContainer::EscherExContainer( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nI… in EscherExContainer() argument 109 rStrm << (sal_uInt32)( ( 0xf | ( nInstance << 4 ) ) | ( nRecType << 16 ) ) << (sal_uInt32)0; in EscherExContainer() 124 EscherExAtom::EscherExAtom( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance, c… in EscherExAtom() argument 127 rStrm << (sal_uInt32)( ( nVersion | ( nInstance << 4 ) ) | ( nRecType << 16 ) ) << (sal_uInt32)0; in EscherExAtom() 312 void EscherPropertyContainer::Commit( SvStream& rSt, sal_uInt16 nVersion, sal_uInt16 nRecType ) in Commit() argument 314 rSt << (sal_uInt16)( ( nCountCount << 4 ) | ( nVersion & 0xf ) ) << nRecType << nCountSize; in Commit() 5200 sal_Bool EscherEx::SeekBehindRecHeader( sal_uInt16 nRecType ) in SeekBehindRecHeader() argument 5210 if ( ( nType >> 16 ) == nRecType ) in SeekBehindRecHeader() 5381 void EscherEx::EndAtom( sal_uInt16 nRecType, int nRecVersion, int nRecInstance ) in EndAtom() argument 5392 void EscherEx::AddAtom( sal_uInt32 nAtomSize, sal_uInt16 nRecType, int nRecVersion, int nRecInstanc… in AddAtom() argument [all …]
|
H A D | dffrecordheader.cxx | 35 rIn >> rRec.nRecType; in operator >>()
|
/trunk/main/svx/workben/msview/ |
H A D | msview.cxx | 93 static Atom* import( UINT16 nRecType, SvStream& rStCtrl ); 98 inline bool hasChildAtom( sal_uInt16 nRecType ) const; 166 return ( maRecordHeader.nRecType == rAtom.maRecordHeader.nRecType ) && in operator ==() 209 return findFirstChildAtom( nRecType ) != NULL; in hasChildAtom() 219 return findNextChildAtom( nRecType, NULL ); in findFirstChildAtom() 229 return findNextChildAtom( nRecType, nRecInstance, NULL ); in findFirstChildAtom() 255 return maRecordHeader.nRecType; in getType() 344 Atom* Atom::import( UINT16 nRecType, SvStream& rStCtrl ) in import() argument 354 aRootRecordHeader.nRecType = nRecType; in import() 365 while( pChild && pChild->maRecordHeader.nRecType != nRecType ) in findNextChildAtom() [all …]
|
/trunk/main/sd/source/filter/ppt/ |
H A D | pptatom.hxx | 46 inline bool hasChildAtom( sal_uInt16 nRecType ) const; 49 inline const Atom* findFirstChildAtom( sal_uInt16 nRecType ) const; 52 const Atom* findNextChildAtom( sal_uInt16 nRecType, const Atom* pLast ) const; 84 inline bool Atom::hasChildAtom( sal_uInt16 nRecType ) const in hasChildAtom() 86 return findFirstChildAtom( nRecType ) != NULL; in hasChildAtom() 89 inline const Atom* Atom::findFirstChildAtom( sal_uInt16 nRecType ) const in findFirstChildAtom() 91 return findNextChildAtom( nRecType, NULL ); in findFirstChildAtom() 122 return maRecordHeader.nRecType; in getType()
|
H A D | pptatom.cxx | 106 const Atom* Atom::findNextChildAtom( sal_uInt16 nRecType, const Atom* pLast ) const in findNextChildAtom() argument 109 while( pChild && pChild->maRecordHeader.nRecType != nRecType ) in findNextChildAtom()
|
H A D | pptin.cxx | 788 switch( aHd.nRecType ) in Import() 809 … if ( ( aHd2.nRecType == DFF_msofbtSpContainer ) || ( aHd2.nRecType == DFF_msofbtSpgrContainer ) ) in Import() 840 switch( aProgTagContentHd.nRecType ) in Import() 949 switch ( aHd.nRecType ) in Import() 960 switch( aProgTagContentHd.nRecType ) in Import() 1563 switch ( aHd.nRecType ) in ImportPageEffect() 2033 switch( aHdMovie.nRecType ) in ReadMedia() 2053 switch( aHd.nRecType ) in ReadMedia() 2658 switch ( aHd.nRecType ) in ProcessObj()
|
/trunk/main/filter/inc/filter/msfilter/ |
H A D | dffpropset.hxx | 63 …inline sal_Bool IsProperty( sal_uInt32 nRecType ) const { return ( mpPropSetEntries[ nRecType & 0x… in IsProperty() 64 …inline sal_Bool IsComplex( sal_uInt32 nRecType ) const { return ( mpPropSetEntries[ nRecType & 0x3… in IsComplex() 72 sal_Bool SeekToContent( sal_uInt32 nRecType, SvStream& rSt ) const;
|
H A D | escherex.hxx | 997 EscherExContainer( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0 ); 1005 …EscherExAtom( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0, const sal_… 1199 void Commit( SvStream& rSt, sal_uInt16 nVersion = 3, sal_uInt16 nRecType = ESCHER_OPT ); 1525 …virtual sal_Bool SeekBehindRecHeader( sal_uInt16 nRecType ); // der stream muss vor einem guelt… 1538 virtual void EndAtom( sal_uInt16 nRecType, int nRecVersion = 0, int nRecInstance = 0 ); 1539 …virtual void AddAtom( sal_uInt32 nAtomSitze, sal_uInt16 nRecType, int nRecVersion = 0, int nRecIns…
|
H A D | dffrecordheader.hxx | 39 sal_uInt16 nRecType; member in DffRecordHeader 43 …DffRecordHeader() : nRecVer(0), nRecInstance(0), nImpVerInst(0), nRecType(0), nRecLen(0), nFilePos… in DffRecordHeader()
|
H A D | msdffimp.hxx | 353 …sal_Bool SeekToContent( SvStream& rIn, sal_uInt16 nRecType, DffSeekToContentMode eMode = SEEK_F… 354 …DffRecordHeader* GetRecordHeader( sal_uInt16 nRecType, DffSeekToContentMode eMode = SEEK_FROM_BEG…
|
/trunk/main/svtools/source/filter/wmf/ |
H A D | enhwmf.cxx | 246 sal_uInt32 nRecType, nRecSize, nNextPos, in ReadEnhWMF() local 256 *pWMF >> nRecType >> nRecSize; in ReadEnhWMF() 272 if( aBmpSaveList.Count() && ( nRecType != EMR_STRETCHBLT ) && ( nRecType != EMR_STRETCHDIBITS ) ) in ReadEnhWMF() 277 switch( nRecType ) in ReadEnhWMF() 903 if ( nRecType == EMR_STRETCHBLT ) in ReadEnhWMF()
|
/trunk/main/svl/source/filerec/ |
H A D | filerec.cxx | 60 #define SFX_REC_HEADER(nRecType,nContentTag,nContentVer) \ argument 61 ( sal_uInt32(nRecType) | \
|
/trunk/main/sc/source/filter/excel/ |
H A D | xiescher.cxx | 3290 …DBG_ASSERT( aHeader.nRecType == DFF_msofbtDgContainer, "XclImpDffConverter::ProcessDrawing - unexp… in ProcessDrawing() 3291 if( aHeader.nRecType == DFF_msofbtDgContainer ) in ProcessDrawing() 3409 …DBG_ASSERT( rHeader.nRecType == DFF_msofbtClientAnchor, "XclImpDffConverter::ProcessClientAnchor2 … in ProcessClientAnchor2() 3610 switch( aHeader.nRecType ) in ProcessDgContainer() 3639 switch( aHeader.nRecType ) in ProcessShGrContainer()
|