Home
last modified time | relevance | path

Searched refs:pRet (Results 76 – 100 of 486) sorted by relevance

12345678910>>...20

/aoo4110/main/sw/source/core/unocore/
H A Dunoflatpara.cxx345 SwTxtNode* pRet = 0; in getNextPara() local
377 pRet = pTxtNode; in getNextPara()
385 if ( pRet ) in getNextPara()
413 pRet = dynamic_cast<SwTxtNode*>(pNd); in getNextPara()
414 if ( pRet ) in getNextPara()
425 if ( pRet ) in getNextPara()
430 pRet->BuildConversionMap( aExpandText ); in getNextPara()
432 xRet = new SwXFlatParagraph( *pRet, aExpandText, pConversionMap ); in getNextPara()
/aoo4110/main/sw/source/core/docnode/
H A Dnode.cxx144 if ( pRet ) in Put()
146 return pRet; in Put()
775 SwFrmFmt* pRet = 0; in GetFlyFmt() local
785 if( !pRet ) in GetFlyFmt()
796 pRet = pFmt; in GetFlyFmt()
802 return pRet; in GetFlyFmt()
830 const SwTxtNode* pRet = 0; in FindOutlineNodeOfLevel() local
850 pRet = rONds[0]->GetTxtNode(); in FindOutlineNodeOfLevel()
862 pRet = 0; in FindOutlineNodeOfLevel()
875 pRet = rONds[0]->GetTxtNode(); in FindOutlineNodeOfLevel()
[all …]
/aoo4110/main/sdext/source/pdfimport/pdfparse/
H A Dpdfparse.cxx587 PDFEntry* pRet = NULL; in read() local
591 pRet = aGrammar.m_aObjectStack.back(); in read()
599 return pRet; in read()
613 PDFEntry* pRet = NULL; in read() local
624 pRet = read( pBuf, nLen ); in read()
629 return pRet; in read()
665 PDFEntry* pRet = NULL; in read()
669 pRet = aGrammar.m_aObjectStack.back(); in read()
687 return pRet; in read()
/aoo4110/main/sfx2/source/view/
H A Dframe.cxx701 SfxFrame *pRet = NULL; in NextFrame() local
703 pRet = rPrev.GetChildFrame( 0 ); in NextFrame()
704 if ( !pRet ) in NextFrame()
707 pRet = NextSibling_Impl( rPrev ); in NextFrame()
710 return pRet; in NextFrame()
716 SfxFrame *pRet = NULL; in NextSibling_Impl() local
722 pRet = rArr[nPos+1]; in NextSibling_Impl()
724 if ( !pRet && rPrev.pParentFrame->pParentFrame ) in NextSibling_Impl()
725 pRet = NextSibling_Impl( *rPrev.pParentFrame ); in NextSibling_Impl()
728 return pRet; in NextSibling_Impl()
/aoo4110/main/sd/source/ui/app/
H A Dsdmod1.cxx631 … const SfxPoolItem* pRet = SfxFrame::OpenDocumentSynchron( aSet, xTargetFrame ); in ExecuteNewDocument() local
632 const SfxViewFrameItem* pFrameItem = PTR_CAST( SfxViewFrameItem, pRet ); in ExecuteNewDocument()
650 const SfxPoolItem* pRet = SFX_APP()->ExecuteSlot (aRequest); in ExecuteNewDocument() local
651 … const SfxViewFrameItem* pFrameItem = PTR_CAST( SfxViewFrameItem, pRet ); in ExecuteNewDocument()
665 std::auto_ptr< SfxItemSet > pRet( CreateItemSet( SID_SD_EDITOPTIONS ) ); in ExecuteNewDocument() local
666 if(pRet.get()) in ExecuteNewDocument()
667 ApplyItemSet( SID_SD_EDITOPTIONS, *pRet.get() ); in ExecuteNewDocument()
683 std::auto_ptr< SfxItemSet > pRet( CreateItemSet( SID_SD_EDITOPTIONS ) ); in ExecuteNewDocument() local
684 if(pRet.get()) in ExecuteNewDocument()
685 ApplyItemSet( SID_SD_EDITOPTIONS, *pRet.get() ); in ExecuteNewDocument()
/aoo4110/main/sw/source/core/doc/
H A Ddoc.cxx371 return pRet; in getForbiddenCharacters()
479 SfxPrinter* pRet = 0; in getPrinter() local
481 pRet = pPrt; in getPrinter()
485 return pRet; in getPrinter()
520 VirtualDevice* pRet = 0; in getVirtualDevice() local
522 pRet = pVirDev; in getVirtualDevice()
526 return pRet; in getVirtualDevice()
544 OutputDevice* pRet = 0; in getReferenceDevice() local
559 return pRet; in getReferenceDevice()
1851 const SwFmtRefMark* pRet = 0; in GetRefMark() local
[all …]
/aoo4110/main/basegfx/inc/basegfx/color/
H A Dbcolor.hxx220 double* pRet = aRet.getArray(); in colorToDoubleSequence() local
222 pRet[0] = mfX; in colorToDoubleSequence()
223 pRet[1] = mfY; in colorToDoubleSequence()
224 pRet[2] = mfZ; in colorToDoubleSequence()
225 pRet[3] = 1.0; in colorToDoubleSequence()
/aoo4110/main/slideshow/source/engine/shapes/
H A Dshapeimporter.cxx561 ShapeSharedPtr pRet; in importShape() local
564 while( !maShapesStack.empty() && !pRet ) in importShape()
607 pRet.reset( new ShapeOfGroup( in importShape()
614 pRet = createShape( xCurrShape, xPropSet, shapeType ); in importShape()
624 if( bIsGroupShape && pRet ) in importShape()
627 maShapesStack.push( XShapesEntry( pRet ) ); in importShape()
631 return pRet; in importShape()
/aoo4110/main/canvas/source/directx/
H A Ddx_impltools.cxx143 Gdiplus::Graphics* pRet = new Gdiplus::Graphics(aHDC); in createGraphicsFromHDC() local
144 if( pRet ) in createGraphicsFromHDC()
145 setupGraphics( *pRet ); in createGraphicsFromHDC()
146 return pRet; in createGraphicsFromHDC()
151 Gdiplus::Graphics* pRet = Gdiplus::Graphics::FromImage(rBitmap.get()); in createGraphicsFromBitmap() local
152 if( pRet ) in createGraphicsFromBitmap()
153 setupGraphics( *pRet ); in createGraphicsFromBitmap()
154 return pRet; in createGraphicsFromBitmap()
/aoo4110/main/automation/source/server/
H A Dsta_list.cxx66 RetStream *StatementList::pRet = NULL; member in StatementList
142 if (!pRet) in StatementList()
143pRet = new RetStream; // so Sp�t wie m�glich, aber dennoch Zentral und auf jeden Fall rechtzeitig… in StatementList()
155pRet->GenReturn( RET_ProfileInfo, 0, CUniString("InitProfile von anderem Statement gerufen ohne Se… in InitProfile()
171 pRet->GenReturn( RET_ProfileInfo, 0, pProfiler->GetProfileLine( aText ) ); in SendProfile()
175pRet->GenReturn( RET_ProfileInfo, S_ProfileTime, static_cast<comm_ULONG>(pProfiler->GetPartitionin… in SendProfile()
179 pRet->GenReturn( RET_ProfileInfo, 0, pProfiler->GetAutoProfiling() ); in SendProfile()
183 pRet->GenReturn( RET_ProfileInfo, 0, CUniString("SendProfile ohne InitProfile\n") ); in SendProfile()
1070 pRet->GenError ( aUId, aMessage ); in ReportError()
1081 if ( pRet ) in DirectLog()
[all …]
/aoo4110/main/sw/source/filter/ww1/
H A Dw1class.cxx386 W1_FFN* pRet = NULL; in GetFFN() local
389 pRet = pFontA[nNum]; in GetFFN()
390 return pRet; in GetFFN()
732 sal_uInt8* pRet = NULL; in Sprm() local
734 pRet = ((W1_PAPX*)(pByte))->grpprlGet(); in Sprm()
735 return pRet; in Sprm()
788 sal_uInt8* pRet = NULL; in GetData() local
791 pRet = p + (iMac + 1) * sizeof(SVBT32) + in GetData()
793 return pRet; in GetData()
977 sal_uInt8* pRet = NULL; in GetData() local
[all …]
/aoo4110/main/sw/source/filter/ww8/
H A Dwrtw8nds.cxx661 const SfxPoolItem* pRet = 0; in HasTextItem() local
683 return pRet; in HasTextItem()
696 return pRet ? *pRet : rNd.SwCntntNode::GetAttr(nWhich); in GetItem()
1402 return pRet; in GetCurrentPageBgBrush()
1408 const SvxBrushItem* pRet = 0; in TrueFrameBgBrush() local
1416 pRet = (const SvxBrushItem*)pItem; in TrueFrameBgBrush()
1420 pRet = 0; in TrueFrameBgBrush()
1435 if (!pRet) in TrueFrameBgBrush()
1436 pRet = GetCurrentPageBgBrush(); in TrueFrameBgBrush()
1440 if (pRet && (pRet->GetGraphic() ||( pRet->GetColor() != COL_TRANSPARENT))) in TrueFrameBgBrush()
[all …]
/aoo4110/main/sal/test/unloading/
H A Dsamplelib2.cxx163 void * pRet = 0; in component_getFactory() local
187 pRet = xFactory.get(); in component_getFactory()
204 pRet = xFactory.get(); in component_getFactory()
221 pRet = xFactory.get(); in component_getFactory()
225 return pRet; in component_getFactory()
/aoo4110/main/filter/source/t602/
H A Dfilterenv.cxx54 void * pRet = 0; in component_getFactory() local
67 pRet = xFactory.get(); in component_getFactory()
80 pRet = xFactory.get(); in component_getFactory()
85 return pRet; in component_getFactory()
/aoo4110/main/sw/source/core/table/
H A Dswtable.cxx1511 SwTableBox* pRet = 0; in GetTblBox() local
1546 if ( !pRet ) in GetTblBox()
1552 return pRet; in GetTblBox()
1611 *pNewFmt = *pRet; in ClaimFrmFmt()
1621 pRet = pNewFmt; in ClaimFrmFmt()
1626 return pRet; in ClaimFrmFmt()
1836 *pNewFmt = *pRet; in ClaimFrmFmt()
1848 pRet = pNewFmt; in ClaimFrmFmt()
1852 return pRet; in ClaimFrmFmt()
2824 const SwTableBox * pRet = NULL; in getTableBox() local
[all …]
H A Dswnewtable.cxx561 pRet->insertBoxes( pBoxes ); in CollectBoxSelection()
580 delete pRet; in CollectBoxSelection()
581 pRet = 0; in CollectBoxSelection()
583 return pRet; in CollectBoxSelection()
2113 SwSaveRowSpan* pRet = 0; in CleanUpTopRowSpan() local
2115 return pRet; in CleanUpTopRowSpan()
2119 delete pRet; in CleanUpTopRowSpan()
2120 pRet = 0; in CleanUpTopRowSpan()
2122 return pRet; in CleanUpTopRowSpan()
2286 const SwTableBox* pRet = 0; in FindCachedStartEndOfRowSpan() local
[all …]
/aoo4110/main/toolkit/source/helper/
H A Dregisterservices.cxx132 pRet = tryCreateFactory( sImplementationName, ImplNamePrefix "." #ClassName, \
136 if ( pRet ) \
137 return pRet; \
233 void* pRet = NULL; in component_getFactory() local
316 if( pRet == 0 ) in component_getFactory()
317 pRet = comp_Layout_component_getFactory( sImplementationName, _pServiceManager, _pRegistryKey ); in component_getFactory()
319 return pRet; in component_getFactory()
/aoo4110/main/stoc/test/
H A Dtestloader.cxx95 XSingleServiceFactory * pRet = (XSingleServiceFactory *)(*pCompFactoryFunc)( in SAL_IMPLEMENT_MAIN() local
97 if (pRet) in SAL_IMPLEMENT_MAIN()
99 xIFace = pRet; in SAL_IMPLEMENT_MAIN()
100 pRet->release(); in SAL_IMPLEMENT_MAIN()
/aoo4110/main/extensions/source/scanner/
H A Dsane.cxx378 char* pRet = new char[mppOptions[n]->size+1]; in GetOptionValue() local
379 SANE_Status nStatus = ControlOption( n, SANE_ACTION_GET_VALUE, pRet ); in GetOptionValue()
383 rRet = pRet; in GetOptionValue()
385 delete [] pRet; in GetOptionValue()
397 SANE_Word* pRet = new SANE_Word[mppOptions[n]->size/sizeof(SANE_Word)]; in GetOptionValue() local
398 SANE_Status nStatus = ControlOption( n, SANE_ACTION_GET_VALUE, pRet ); in GetOptionValue()
403 rRet = (double)pRet[ nElement ]; in GetOptionValue()
405 rRet = SANE_UNFIX( pRet[nElement] ); in GetOptionValue()
407 delete [] pRet; in GetOptionValue()
/aoo4110/main/svtools/inc/svtools/
H A Dtreelist.hxx452 SvListEntry* pRet = 0; in GetEntry() local
454 pRet = (SvListEntry*)(pParent->pChilds->GetObject(nPos)); in GetEntry()
455 return pRet; in GetEntry()
460 SvListEntry* pRet; in GetEntry() local
462 pRet = (SvListEntry*)(pRootItem->pChilds->GetObject(nRootPos)); in GetEntry()
464 pRet = 0; in GetEntry()
465 return pRet; in GetEntry()
/aoo4110/main/sw/source/core/text/
H A Dwrong.cxx447 SwWrongList *pRet = NULL; in SplitList() local
463 pRet = new SwGrammarMarkUp(); in SplitList()
465 pRet = new SwWrongList( GetWrongListType() ); in SplitList()
466pRet->Insert(0, maList.begin(), ( nLst >= maList.size() ? maList.end() : maList.begin() + nLst ) ); in SplitList()
467 pRet->SetInvalid( GetBeginInv(), GetEndInv() ); in SplitList()
468 pRet->_Invalidate( nSplitPos ? nSplitPos - 1 : nSplitPos, nSplitPos ); in SplitList()
485 return pRet; in SplitList()
/aoo4110/main/chart2/source/view/main/
H A DPlottingPositionHelper.cxx91 PlottingPositionHelper* pRet = new PlottingPositionHelper(*this); in clone() local
92 return pRet; in clone()
97 PlottingPositionHelper* pRet = this->clone(); in createSecondaryPosHelper() local
98 pRet->m_aScales[1]=rSecondaryScale; in createSecondaryPosHelper()
99 return pRet; in createSecondaryPosHelper()
359 PolarPlottingPositionHelper* pRet = new PolarPlottingPositionHelper(*this); in clone() local
360 return pRet; in clone()
/aoo4110/main/dbaccess/source/ui/control/
H A Dtabletree.cxx544 SvLBoxEntry* pRet = NULL; in implAddEntry() local
547 pRet = InsertEntry( sName, pParentEntry, sal_False, LIST_APPEND ); in implAddEntry()
552 SetExpandedEntryBmp( pRet, aImage, BMP_COLOR_NORMAL ); in implAddEntry()
553 SetCollapsedEntryBmp( pRet, aImage, BMP_COLOR_NORMAL ); in implAddEntry()
554 SetExpandedEntryBmp( pRet, aImageHC, BMP_COLOR_HIGHCONTRAST ); in implAddEntry()
555 SetCollapsedEntryBmp( pRet, aImageHC, BMP_COLOR_HIGHCONTRAST ); in implAddEntry()
557 return pRet; in implAddEntry()
/aoo4110/main/winaccessibility/source/UAccCOM/
H A DAccRelation.cpp112 IAccessible* pRet = NULL; in get_target() local
114 BOOL isGet = CMAccessible::get_IAccessibleFromXAccessible((long)pRAcc.get(),&pRet); in get_target()
117 *target = /*(IAccessible2 *)*/(IUnknown*)pRet; in get_target()
118 pRet->AddRef(); in get_target()
/aoo4110/main/sc/source/filter/inc/
H A Dtool.h138 SfxUInt32Item* pRet; in GetAttr() local
144 pRet = aIdents[ nIndex ].GetAttr(); in GetAttr()
154 pRet = pAttr; in GetAttr()
156 return pRet; in GetAttr()

Completed in 287 milliseconds

12345678910>>...20