| /AOO41X/main/filter/source/graphicfilter/idxf/ |
| H A D | dxfreprd.cxx | 241 const DXFLineEntity * pE = (DXFLineEntity*)pBE; in CalcBoundingBox() local 242 rBox.Union(pE->aP0); in CalcBoundingBox() 243 rBox.Union(pE->aP1); in CalcBoundingBox() 247 const DXFPointEntity * pE = (DXFPointEntity*)pBE; in CalcBoundingBox() local 248 rBox.Union(pE->aP0); in CalcBoundingBox() 252 const DXFCircleEntity * pE = (DXFCircleEntity*)pBE; in CalcBoundingBox() local 254 aP=pE->aP0; in CalcBoundingBox() 255 aP.fx-=pE->fRadius; in CalcBoundingBox() 256 aP.fy-=pE->fRadius; in CalcBoundingBox() 258 aP=pE->aP0; in CalcBoundingBox() [all …]
|
| H A D | dxfentrd.cxx | 814 DXFBasicEntity * pE, * * ppSucc; in Read() local 826 if (strcmp(rDGR.GetS(),"LINE" )==0) pE=new DXFLineEntity; in Read() 827 else if (strcmp(rDGR.GetS(),"POINT" )==0) pE=new DXFPointEntity; in Read() 828 else if (strcmp(rDGR.GetS(),"CIRCLE" )==0) pE=new DXFCircleEntity; in Read() 829 else if (strcmp(rDGR.GetS(),"ARC" )==0) pE=new DXFArcEntity; in Read() 830 else if (strcmp(rDGR.GetS(),"TRACE" )==0) pE=new DXFTraceEntity; in Read() 831 else if (strcmp(rDGR.GetS(),"SOLID" )==0) pE=new DXFSolidEntity; in Read() 832 else if (strcmp(rDGR.GetS(),"TEXT" )==0) pE=new DXFTextEntity; in Read() 833 else if (strcmp(rDGR.GetS(),"SHAPE" )==0) pE=new DXFShapeEntity; in Read() 834 else if (strcmp(rDGR.GetS(),"INSERT" )==0) pE=new DXFInsertEntity; in Read() [all …]
|
| H A D | dxf2mtf.cxx | 772 const DXFBasicEntity * pE=rEntities.pFirst; in DrawEntities() local 774 while (pE!=NULL && bStatus==sal_True) { in DrawEntities() 775 if (pE->nSpace==0) { in DrawEntities() 776 if (pE->aExtrusion.fz==1.0) { in DrawEntities() 780 aET=DXFTransform(DXFTransform(pE->aExtrusion),rTransform); in DrawEntities() 783 switch (pE->eType) { in DrawEntities() 785 DrawLineEntity((DXFLineEntity&)*pE,*pT); in DrawEntities() 788 DrawPointEntity((DXFPointEntity&)*pE,*pT); in DrawEntities() 791 DrawCircleEntity((DXFCircleEntity&)*pE,*pT); in DrawEntities() 794 DrawArcEntity((DXFArcEntity&)*pE,*pT); in DrawEntities() [all …]
|
| /AOO41X/main/sc/source/filter/rtf/ |
| H A D | eeimpars.cxx | 145 ScEEParseEntry* pE; in WriteToDocument() local 157 for ( pE = mpParser->First(); pE; pE = mpParser->Next() ) in WriteToDocument() 159 SCROW nRow = nStartRow + pE->nRow; in WriteToDocument() 162 SCCOL nCol = nStartCol + pE->nCol + nMergeColAdd; in WriteToDocument() 176 pE->nCol = nCol; in WriteToDocument() 177 pE->nRow = nRow; in WriteToDocument() 180 SfxItemSet aSet = mpEngine->GetAttribs( pE->aSel ); in WriteToDocument() 189 sal_Bool bSimple = ( pE->aSel.nStartPara == pE->aSel.nEndPara ); in WriteToDocument() 218 if ( pE->pNumStr ) in WriteToDocument() 220 aNumStr = *pE->pNumStr; in WriteToDocument() [all …]
|
| H A D | rtfparse.cxx | 90 ScEEParseEntry* pE = pList->Last(); in Read() local 91 if ( pE in Read() 93 && (( pE->aSel.nStartPara == pE->aSel.nEndPara in Read() 94 && pE->aSel.nStartPos == pE->aSel.nEndPos) in Read() 96 || ( pE->aSel.nStartPara + 1 == pE->aSel.nEndPara in Read() 97 && pE->aSel.nStartPos == pEdit->GetTextLen( pE->aSel.nStartPara ) in Read() 98 && pE->aSel.nEndPos == 0 )) ) in Read() 101 delete pE; in Read() 110 void ScRTFParser::EntryEnd( ScEEParseEntry* pE, const ESelection& aSel ) in EntryEnd() argument 113 pE->aSel.nEndPara = aSel.nEndPara - 2; in EntryEnd() [all …]
|
| /AOO41X/main/sc/source/filter/html/ |
| H A D | htmlpars.cxx | 200 void ScHTMLLayoutParser::NewActEntry( ScEEParseEntry* pE ) in NewActEntry() argument 202 ScEEParser::NewActEntry( pE ); in NewActEntry() 203 if ( pE ) in NewActEntry() 205 if ( !pE->aSel.HasRange() ) in NewActEntry() 207 pActEntry->aSel.nStartPara = pE->aSel.nEndPara; in NewActEntry() 208 pActEntry->aSel.nStartPos = pE->aSel.nEndPos; in NewActEntry() 216 void ScHTMLLayoutParser::EntryEnd( ScEEParseEntry* pE, const ESelection& rSel ) in EntryEnd() argument 218 if ( rSel.nEndPara >= pE->aSel.nStartPara ) in EntryEnd() 220 pE->aSel.nEndPara = rSel.nEndPara; in EntryEnd() 221 pE->aSel.nEndPos = rSel.nEndPos; in EntryEnd() [all …]
|
| H A D | htmlexp2.cxx | 66 for ( ScHTMLGraphEntry* pE = aGraphList.First(); pE; in PrepareGraphics() local 67 pE = aGraphList.Next() ) in PrepareGraphics() 69 if ( !pE->bInCell ) in PrepareGraphics() 123 ScHTMLGraphEntry* pE = new ScHTMLGraphEntry( pObject, in FillGraphList() local 125 aGraphList.Insert( pE, LIST_APPEND ); in FillGraphList() 133 void ScHTMLExport::WriteGraphEntry( ScHTMLGraphEntry* pE ) in WriteGraphEntry() argument 135 SdrObject* pObject = pE->pObject; in WriteGraphEntry() 138 ByteString::CreateFromInt32( pE->aSize.Width() ); in WriteGraphEntry() 140 ByteString::CreateFromInt32( pE->aSize.Height() ); in WriteGraphEntry() 141 if ( pE->bInCell ) in WriteGraphEntry() [all …]
|
| H A D | htmlexp.cxx | 290 for ( ScHTMLGraphEntry* pE = aGraphList.First(); pE; pE = aGraphList.Next() ) in ~ScHTMLExport() local 291 delete pE; in ~ScHTMLExport() 788 for ( ScHTMLGraphEntry* pE = aGraphList.First(); pE; pE = aGraphList.Next() ) in WriteTables() local 790 if ( !pE->bWritten ) in WriteTables() 791 WriteGraphEntry( pE ); in WriteTables() 792 delete pE; in WriteTables()
|
| /AOO41X/main/cui/source/tabpages/ |
| H A D | macroass.cxx | 154 const SvLBoxEntry* pE = mpImpl->pEventLB->GetListBox().FirstSelected(); in EnableButtons() local 155 if ( pE ) in EnableButtons() 158 const SvxMacro* pM = aTbl.Get( (sal_uInt16)(sal_uLong) pE->GetUserData() ); in EnableButtons() 162 sEventMacro = ((SvLBoxString*)pE->GetItem( LB_MACROS_ITEMPOS ))->GetText(); in EnableButtons() 196 SvLBoxEntry* pE = mpImpl->pEventLB->GetListBox().InsertEntry( sTmp ); in AddEvent() local 197 pE->SetUserData( reinterpret_cast< void* >( sal::static_int_cast< sal_IntPtr >( nEventId )) ); in AddEvent() 263 SvLBoxEntry* pE = rListBox.GetEntry( 0 ); in Reset() local 264 if( pE ) in Reset() 265 rListBox.SetCurEntry( pE ); in Reset() 277 SvLBoxEntry* pE = rListBox.FirstSelected(); in IMPL_STATIC_LINK() local [all …]
|
| /AOO41X/main/svx/source/unodialogs/textconversiondlgs/ |
| H A D | chinese_dictionarydialog.cxx | 135 DictionaryEntry* pE; in save() local 139 pE = m_aToBeDeleted[nN]; in save() 140 m_xDictionary->removeEntry( pE->m_aTerm, pE->m_aMapping ); in save() 144 pE = getEntryOnPos( nN ); in save() 145 if(pE->m_bNewEntry) in save() 149 m_xDictionary->addEntry( pE->m_aTerm, pE->m_aMapping ); in save() 150 … xPropertyType->setPropertyType( pE->m_aTerm, pE->m_aMapping, pE->m_nConversionPropertyType ); in save() 170 DictionaryEntry* pE = m_aToBeDeleted[nN]; in deleteAll() local 171 delete pE; in deleteAll() 243 DictionaryEntry* pE = 0; in getTermEntry() local [all …]
|
| /AOO41X/main/cui/source/dialogs/ |
| H A D | linkdlg.cxx | 274 SvLBoxEntry* pE = rListBox.FirstSelected(); in IMPL_LINK_INLINE_END() local 275 while( pE ) in IMPL_LINK_INLINE_END() 277 sal_uInt16 nFndPos = (sal_uInt16)rListBox.GetModel()->GetAbsPos( pE ); in IMPL_LINK_INLINE_END() 280 aLnkArr.push_back( static_cast< SvBaseLink* >( pE->GetUserData() ) ); in IMPL_LINK_INLINE_END() 283 pE = rListBox.NextSelected( pE ); in IMPL_LINK_INLINE_END() 309 if( 0 == (pE = rListBox.GetEntry( aPosArr[ 0 ] )) || in IMPL_LINK_INLINE_END() 310 pE->GetUserData() != aLnkArr[ 0 ] ) in IMPL_LINK_INLINE_END() 313 pE = rListBox.First(); in IMPL_LINK_INLINE_END() 314 while( pE ) in IMPL_LINK_INLINE_END() 316 if( pE->GetUserData() == aLnkArr[ 0 ] ) in IMPL_LINK_INLINE_END() [all …]
|
| /AOO41X/main/cui/source/customize/ |
| H A D | macropg.cxx | 215 const SvLBoxEntry* pE = mpImpl->pEventLB->GetListBox().FirstSelected(); in EnableButtons() local 216 if ( pE ) in EnableButtons() 218 SvLBoxString* pEventMacro = (SvLBoxString*)pE->GetItem( LB_MACROS_ITEMPOS ); in EnableButtons() 243 SvLBoxEntry* pE = rListBox.GetEntry( 0 ); in ~_SvxMacroTabPage() local 244 while( pE ) in ~_SvxMacroTabPage() 246 ::rtl::OUString* pEventName = (::rtl::OUString*)pE->GetUserData(); in ~_SvxMacroTabPage() 248 pE->SetUserData((void*)0); in ~_SvxMacroTabPage() 249 pE = rListBox.NextSibling( pE ); in ~_SvxMacroTabPage() 525 SvLBoxEntry* pE = rListBox.GetEntry( 0 ); in DisplayAppEvents() local 585 pE = rListBox.GetEntry(0); in DisplayAppEvents() [all …]
|
| /AOO41X/main/svtools/source/filter/igif/ |
| H A D | decode.cxx | 124 GIFLZWTableEntry* pE; in AddToTable() local 128 pE = pTable + nTableSize; in AddToTable() 129 pE->pPrev = pTable + nPrevCode; in AddToTable() 130 pE->pFirst = pE->pPrev->pFirst; in AddToTable() 131 pE->nData = pTable[ nCodeFirstData ].pFirst->nData; in AddToTable() 143 GIFLZWTableEntry* pE; in ProcessOneCode() local 198 pE = pTable + nCode; in ProcessOneCode() 202 *(--pOutBufData) = pE->nData; in ProcessOneCode() 203 pE = pE->pPrev; in ProcessOneCode() 205 while( pE ); in ProcessOneCode()
|
| /AOO41X/main/svl/inc/svl/ |
| H A D | svarray.hxx | 179 void Insert( const AE *pE, sal_uInt16 nL, sal_uInt16 nP );\ 182 void Replace( const AE *pE, sal_uInt16 nL, sal_uInt16 nP );\ 232 AE* pE = (AE*)(rtl_reallocateMemory (pData, sizeof(AE) * nL));\ 233 if ((pE != 0) || (nL == 0))\ 235 pData = pE;\ 251 void nm::Insert( const AE* pE, sal_uInt16 nL, sal_uInt16 nP )\ 258 if( pE )\ 259 memcpy( pData+nP, pE, nL * sizeof( AE ));\ 269 void nm::Replace( const AE *pE, sal_uInt16 nL, sal_uInt16 nP )\ 271 if( pE && nP < nA )\ [all …]
|
| /AOO41X/main/sw/source/ui/chrdlg/ |
| H A D | swuiccoll.cxx | 236 SvLBoxEntry* pE = aTbLinks.InsertEntryToColumn( aEntry, n ); in Reset() local 238 aTbLinks.Select(pE); in Reset() 282 SvLBoxEntry* pE = aTbLinks.FirstSelected(); in IMPL_LINK() local 284 if( !pE || LISTBOX_ENTRY_NOTFOUND == in IMPL_LINK() 285 ( nPos = aTbLinks.GetModel()->GetAbsPos( pE ) ) ) in IMPL_LINK() 287 ASSERT( pE, "wo kommt der leere Eintrag her?" ); in IMPL_LINK() 301 aTbLinks.GetModel()->Remove(pE); in IMPL_LINK() 302 pE = aTbLinks.InsertEntryToColumn(sSel, nPos); in IMPL_LINK() 303 aTbLinks.Select(pE); in IMPL_LINK() 304 aTbLinks.MakeVisible(pE); in IMPL_LINK() [all …]
|
| /AOO41X/main/toolkit/source/controls/ |
| H A D | stdtabcontroller.cxx | 265 ComponentEntry* pE = new ComponentEntry; in autoTabOrder() local 266 pE->pComponent = pC; in autoTabOrder() 268 pE->aPos.X() = aPosSize.X; in autoTabOrder() 269 pE->aPos.Y() = aPosSize.Y; in autoTabOrder() 275 if ( pEntry->aPos.Y() >= pE->aPos.Y() ) in autoTabOrder() 277 while ( pEntry && ( pEntry->aPos.Y() == pE->aPos.Y() ) in autoTabOrder() 278 && ( pEntry->aPos.X() < pE->aPos.X() ) ) in autoTabOrder() 285 aCtrls.Insert( pE, nPos ); in autoTabOrder() 291 ComponentEntry* pE = aCtrls.GetObject( n ); in autoTabOrder() local 292 Reference< XControl > xUC( pE->pComponent, UNO_QUERY ); in autoTabOrder() [all …]
|
| /AOO41X/main/idl/source/cmptools/ |
| H A D | hash.cxx | 223 SvStringHashEntry * pE = Get( i ); in GetNearString() local 224 if( pE ) in GetNearString() 226 if( pE->GetName().EqualsIgnoreCaseAscii( rName ) && !pE->GetName().Equals( rName ) ) in GetNearString() 227 return pE->GetName(); in GetNearString()
|
| /AOO41X/main/editeng/source/editeng/ |
| H A D | editeng.cxx | 771 EditEngine* pE = (EditEngine*)this; in GetWord() local 773 EditSelection aSel( pE->pImpEditEngine->CreateSel( rSelection ) ); in GetWord() 774 aSel = pE->pImpEditEngine->SelectWord( aSel, nWordType ); in GetWord() 775 return pE->pImpEditEngine->CreateESel( aSel ); in GetWord() 781 EditEngine* pE = (EditEngine*)this; in WordLeft() local 783 EditSelection aSel( pE->pImpEditEngine->CreateSel( rSelection ) ); in WordLeft() 784 aSel = pE->pImpEditEngine->WordLeft( aSel.Min(), nWordType ); in WordLeft() 785 return pE->pImpEditEngine->CreateESel( aSel ); in WordLeft() 791 EditEngine* pE = (EditEngine*)this; in WordRight() local 793 EditSelection aSel( pE->pImpEditEngine->CreateSel( rSelection ) ); in WordRight() [all …]
|
| /AOO41X/main/svx/source/customshapes/ |
| H A D | EnhancedCustomShapeTypeNames.cxx | 46 MSO_SPT pE; member 294 (*pH)[ pPtr->pS ] = pPtr->pE; in Get() 322 const char* pE; member 546 (*pH)[ pPtr->pS ] = pPtr->pE; in GetAccName()
|
| /AOO41X/main/sc/source/core/tool/ |
| H A D | chgtrack.cxx | 596 ScChangeActionCellListEntry* pE = new ScChangeActionCellListEntry( in RejectRestoreContents() local 598 pListContents = pE; in RejectRestoreContents() 606 ScChangeActionCellListEntry* pE = pListContents; in RejectRestoreContents() local 607 while ( pE ) in RejectRestoreContents() 609 if ( !pE->pContent->IsDeletedIn() && in RejectRestoreContents() 610 pE->pContent->GetBigRange().aStart.IsValid( pDoc ) ) in RejectRestoreContents() 611 pE->pContent->PutNewValueToDoc( pDoc, nDx, nDy ); in RejectRestoreContents() 613 pNextEntry = pE->pNext; in RejectRestoreContents() 614 delete pE; in RejectRestoreContents() 615 pE = pNextEntry; in RejectRestoreContents() [all …]
|
| /AOO41X/main/svl/source/memtools/ |
| H A D | svarray.cxx | 249 void SvUShortsSort::Insert( const sal_uInt16* pE, sal_uInt16 nL) in Insert() argument 253 if( ! Seek_Entry( *(pE+n), &nP )) in Insert() 254 SvUShorts::Insert( *(pE+n), nP ); in Insert()
|
| /AOO41X/main/basctl/source/basicide/ |
| H A D | macrodlg.cxx | 188 SvLBoxEntry* pE = aMacroBox.GetEntry( nPos ); in RestoreMacroDescription() local 189 while ( pE ) in RestoreMacroDescription() 191 if ( aMacroBox.GetEntryText( pE ) == aLastMacro ) in RestoreMacroDescription() 193 pEntry = pE; in RestoreMacroDescription() 196 pE = aMacroBox.GetEntry( ++nPos ); in RestoreMacroDescription()
|
| /AOO41X/main/filter/source/msfilter/ |
| H A D | svdfppt.cxx | 1627 PptSlidePersistEntry* pE = new PptSlidePersistEntry; in SdrPowerPointImport() local 1628 pE->aPersistAtom.nPsrReference = aDocAtom.nHandoutMasterPersist; in SdrPowerPointImport() 1629 pE->bHandoutMaster = sal_True; in SdrPowerPointImport() 1631 pE->bStarDrawFiller = sal_True; // this is a dummy master page in SdrPowerPointImport() 1632 pMasterPages->C40_INSERT( PptSlidePersistEntry, pE, 0 ); in SdrPowerPointImport() 2724 PptSlidePersistEntry* pE = (*pPageList)[ nAktPageNum ]; in GetColorFromPalette() local 2725 if ( pE ) in GetColorFromPalette() 2726 nSlideFlags = pE->aSlideAtom.nFlags; in GetColorFromPalette() 2728 ((SdrPowerPointImport*)this)->aPageColors = pE->aColorScheme; in GetColorFromPalette() 3009 PptSlidePersistEntry* pE = (*pPageList)[ nMasterNum ]; in ImportPage() local [all …]
|
| /AOO41X/main/xmloff/source/draw/ |
| H A D | EnhancedCustomShapeToken.cxx | 44 EnhancedCustomShapeTokenEnum pE; member 184 (*pH)[ pPtr->pS ] = pPtr->pE; in EASGet()
|
| /AOO41X/main/sd/source/filter/ppt/ |
| H A D | pptin.cxx | 762 PptSlidePersistEntry* pE = pPersist; in Import() local 763 while( ( pE->aSlideAtom.nFlags & 4 ) && pE->aSlideAtom.nMasterId ) in Import() 765 sal_uInt16 nNextMaster = pMasterPages->FindPage( pE->aSlideAtom.nMasterId ); in Import() 769 pE = (*pList)[ nNextMaster ]; in Import() 771 …SdrObject* pObj = ImportPageBackgroundObject( *pMPage, pE->nBackgroundOffset, sal_True ); // im… in Import() 1846 PptSlidePersistEntry* pE = (*pPageList)[ nMasterNum ]; in ImportPageEffect() local 1847 if ( pE ) in ImportPageEffect() 1849 sal_uInt32 nOfs = pE->aPersistAtom.nReserved; in ImportPageEffect()
|