Lines Matching refs:pNd

234 			SwNode* pNd = &rDelPos.GetNode();  in ChgNode()  local
237 if( pNd->IsNoTxtNode() ) in ChgNode()
240 ((SwNoTxtNode*)pNd)->SavePersistentData(); in ChgNode()
242 else if( pNd->IsTxtNode() ) in ChgNode()
244 SwTxtNode* pTxtNd = (SwTxtNode*)pNd; in ChgNode()
249 pOutlineNds->Remove( pNd ); in ChgNode()
274 SwCntntNode * pCNd = pNd->GetCntntNode(); in ChgNode()
275 rNds.InsertNode( pNd, aInsPos ); in ChgNode()
634 SwNode* pNd = &aMvIdx.GetNode(); in _MoveNodes() local
645 const bool bOutlNd = pNd->IsTxtNode() && in _MoveNodes()
646 … 0 != ((SwTxtNode*)pNd)->GetAttrOutlineLevel();//<-end,zhaojianwei in _MoveNodes()
650 pOutlineNds->Remove( pNd ); in _MoveNodes()
653 pNd->pStartOfSection = pSttNode; in _MoveNodes()
654 rNodes.InsertNode( pNd, aIdx ); in _MoveNodes()
659 rNodes.pOutlineNds->Insert( pNd ); in _MoveNodes()
660 else if( pNd->IsStartNode() ) in _MoveNodes()
661 pSttNode = (SwStartNode*)pNd; in _MoveNodes()
662 else if( pNd->IsEndNode() ) in _MoveNodes()
664 pSttNode->pEndOfSection = (SwEndNode*)pNd; in _MoveNodes()
1335 SwNode *pNd, *pChkNd = pAktNode->pStartOfSection; in Delete() local
1338 pNd = &aRg.aEnd.GetNode(); in Delete()
1340 if( pNd->IsTxtNode() ) in Delete()
1344 if( 0 != ((SwTxtNode*)pNd)->GetAttrOutlineLevel() &&//<-end,zhaojianwei in Delete()
1345 pOutlineNds->Seek_Entry( pNd, &nIdxPos )) in Delete()
1351 ((SwTxtNode*)pNd)->InvalidateNumRule(); in Delete()
1353 else if( pNd->IsEndNode() && in Delete()
1354 pNd->pStartOfSection->IsTableNode() ) in Delete()
1355 ((SwTableNode*)pNd->pStartOfSection)->DelFrms(); in Delete()
1360 } while( pNd != pChkNd ); in Delete()
1532 SwNode* pNd = 0; in GoNext() local
1533 while( aTmp < Count()-1 && 0 == ( pNd = &aTmp.GetNode())->IsCntntNode() ) in GoNext()
1537 pNd = 0; in GoNext()
1540 return (SwCntntNode*)pNd; in GoNext()
1549 SwNode* pNd = 0; in GoPrevious() local
1550 while( aTmp.GetIndex() && 0 == ( pNd = &aTmp.GetNode())->IsCntntNode() ) in GoPrevious()
1554 pNd = 0; in GoPrevious()
1557 return (SwCntntNode*)pNd; in GoPrevious()
1655 SwNode* pNd = (*this)[ n ]; in DelNodes() local
1657 if( pNd->IsTxtNode() && in DelNodes()
1659 0 != ((SwTxtNode*)pNd)->GetAttrOutlineLevel() ) //<-end,zhaojianwei in DelNodes()
1662 if( pOutlineNds->Seek_Entry( pNd, &nIdxPos )) in DelNodes()
1668 if( pNd->IsCntntNode() ) in DelNodes()
1670 ((SwCntntNode*)pNd)->InvalidateNumRule(); in DelNodes()
1671 ((SwCntntNode*)pNd)->DelFrms(); in DelNodes()
2245 const SwNode* pNd; in GoNextSection() local
2248 pNd = & aTmp.GetNode(); in GoNextSection()
2249 if (ND_SECTIONNODE == pNd->GetNodeType()) in GoNextSection()
2251 const SwSection& rSect = ((SwSectionNode*)pNd)->GetSection(); in GoNextSection()
2255 aTmp = *pNd->EndOfSectionNode(); in GoNextSection()
2261 if( pNd->pStartOfSection->IsSectionNode() ) in GoNextSection()
2263 const SwSection& rSect = ((SwSectionNode*)pNd-> in GoNextSection()
2268 aTmp = *pNd->EndOfSectionNode(); in GoNextSection()
2271 else if( ND_CONTENTNODE & pNd->GetNodeType() ) in GoNextSection()
2275 0 != (pSectNd = pNd->FindSectionNode() ) && in GoNextSection()
2284 return (SwCntntNode*)pNd; in GoNextSection()
2298 const SwNode* pNd; in GoPrevSection() local
2301 pNd = & aTmp.GetNode(); in GoPrevSection()
2302 if (ND_ENDNODE == pNd->GetNodeType()) in GoPrevSection()
2304 if( pNd->pStartOfSection->IsSectionNode() ) in GoPrevSection()
2306 const SwSection& rSect = ((SwSectionNode*)pNd-> in GoPrevSection()
2311 aTmp = *pNd->StartOfSectionNode(); in GoPrevSection()
2318 if( pNd->pStartOfSection->IsSectionNode() ) in GoPrevSection()
2320 const SwSection& rSect = ((SwSectionNode*)pNd-> in GoPrevSection()
2325 aTmp = *pNd->StartOfSectionNode(); in GoPrevSection()
2328 else if( ND_CONTENTNODE & pNd->GetNodeType() ) in GoPrevSection()
2332 0 != (pSectNd = pNd->FindSectionNode() ) && in GoPrevSection()
2341 return (SwCntntNode*)pNd; in GoPrevSection()
2378 SwNode* pNd; in FindPrvNxtFrmNode() local
2382 pNd = &aIdx.GetNode(); in FindPrvNxtFrmNode()
2385 pNd = pSttNd; in FindPrvNxtFrmNode()
2387 if( ( pFrmNd = pNd )->IsCntntNode() ) in FindPrvNxtFrmNode()
2440 else if( pNd->IsEndNode() && pNd->StartOfSectionNode()->IsTableNode() ) in FindPrvNxtFrmNode()
2442 pFrmNd = pNd->StartOfSectionNode(); in FindPrvNxtFrmNode()