Lines Matching refs:pPage

406                 SwPageFrm* pPage = pOld->FindPageFrm();  in MoveAnchor()  local
407 ASSERT( pPage, "Where's my page?" ); in MoveAnchor()
409 if( pPage->GetSortedObjs() ) in MoveAnchor()
416 for( i = 0; (sal_uInt16)i<pPage->GetSortedObjs()->Count(); ++i ) in MoveAnchor()
419 (*pPage->GetSortedObjs())[i]; in MoveAnchor()
785 SwPageFrm *pPage; in lcl_NotifyNeighbours() local
804 pPage = pFly->FindPageFrm(); in lcl_NotifyNeighbours()
812 pPage = pAnch->FindPageFrm(); in lcl_NotifyNeighbours()
818 sal_uInt32 nCount = pPage->GetSortedObjs() ? pPage->GetSortedObjs()->Count() : 0; in lcl_NotifyNeighbours()
821 SwAnchoredObject* pAnchoredObj = (*pPage->GetSortedObjs())[i]; in lcl_NotifyNeighbours()
1229 const SdrPage* pPage = pIDDMA->GetDrawModel()->GetPage(0); in ShouldObjectBeSelected() local
1230 for(sal_uInt32 a(pObj->GetOrdNum() + 1); bRet && a < pPage->GetObjCount(); a++) in ShouldObjectBeSelected()
1232 SdrObject *pCandidate = pPage->GetObj(a); in ShouldObjectBeSelected()
1690 const SwFrm* pPage = 0; in ImpEndCreate() local
1716 pPage = pTmpFrm; in ImpEndCreate()
1726 if( !pPage ) in ImpEndCreate()
1727 pPage = pAnch->FindPageFrm(); in ImpEndCreate()
1732 pAnch = ::FindAnchor( pPage, aPt, bBodyOnly ); in ImpEndCreate()
1749 pPage = pAnch->FindPageFrm(); in ImpEndCreate()
1752 aAnch.SetPageNum( pPage->GetPhyPageNum() ); in ImpEndCreate()
1753 pAnch = pPage; // die Page wird jetzt zum Anker in ImpEndCreate()
2624 const SwFrm *pPage = GetLayout()->Lower(); in CheckUnboundObjects() local
2625 const SwFrm *pLast = pPage; in CheckUnboundObjects()
2626 while ( pPage && !pPage->Frm().IsInside( aPt ) ) in CheckUnboundObjects()
2628 if ( aPt.Y() > pPage->Frm().Bottom() ) in CheckUnboundObjects()
2629 pLast = pPage; in CheckUnboundObjects()
2630 pPage = pPage->GetNext(); in CheckUnboundObjects()
2632 if ( !pPage ) in CheckUnboundObjects()
2633 pPage = pLast; in CheckUnboundObjects()
2634 ASSERT( pPage, "Page not found." ); in CheckUnboundObjects()
2645 pAnch = ::FindAnchor( pPage, aPt, sal_True ); in CheckUnboundObjects()
3139 const SwFrm *pPage = GetLayout()->Lower(); in GetRelativePagePosition() local
3140 while ( pPage && !pPage->Frm().IsInside( rDocPos ) ) in GetRelativePagePosition()
3142 pPage = pPage->GetNext(); in GetRelativePagePosition()
3144 if(pPage) in GetRelativePagePosition()
3146 aRet = rDocPos - pPage->Frm().TopLeft(); in GetRelativePagePosition()