Lines Matching refs:aIdx

431 		SwNodeIndex aIdx( *this );  in IsInVisibleArea()  local
432 pNd = GetNodes().GoNext( &aIdx ); in IsInVisibleArea()
436 SwNodeIndex aIdx( *EndOfSectionNode() ); in IsInVisibleArea() local
437 pNd = GetNodes().GoPrevious( &aIdx ); in IsInVisibleArea()
537 SwNodeIndex aIdx( *this ); in FindPageDesc() local
538 pNode = GetNodes().GoNext( &aIdx ); in FindPageDesc()
542 SwNodeIndex aIdx( *EndOfSectionNode() ); in FindPageDesc() local
543 pNode = GetNodes().GoPrevious( &aIdx ); in FindPageDesc()
896 SwNodeIndex aIdx( *this, -1 ); in HasPrevNextLayNode() local
899 while ( aIdx.GetNode().IsSectionNode() || in HasPrevNextLayNode()
900 ( aIdx.GetNode().IsEndNode() && in HasPrevNextLayNode()
901 aIdx.GetNode().StartOfSectionNode()->IsSectionNode() ) ) in HasPrevNextLayNode()
903 --aIdx; in HasPrevNextLayNode()
906 if( IsValidNextPrevNd( aIdx.GetNode() )) in HasPrevNextLayNode()
911 aIdx = SwNodeIndex( *this, +1 ); in HasPrevNextLayNode()
912 while ( aIdx.GetNode().IsSectionNode() || in HasPrevNextLayNode()
913 ( aIdx.GetNode().IsEndNode() && in HasPrevNextLayNode()
914 aIdx.GetNode().StartOfSectionNode()->IsSectionNode() ) ) in HasPrevNextLayNode()
916 ++aIdx; in HasPrevNextLayNode()
919 if( IsValidNextPrevNd( aIdx.GetNode() )) in HasPrevNextLayNode()
964 SwNodeIndex aIdx( *this ); in CheckSectionCondColl() local
968 while( 0 != ( pCNd = rNds.GoNext( &aIdx )) && pCNd->GetIndex() < nEndIdx ) in CheckSectionCondColl()
1822 SwNodeIndex aIdx( *this, 1 ); in CanJoinNext() local
1825 while( aIdx < rNds.Count()-1 && in CanJoinNext()
1826 (( pNd = &aIdx.GetNode())->IsSectionNode() || in CanJoinNext()
1828 aIdx++; in CanJoinNext()
1830 if( pNd->GetNodeType() != nNdType || rNds.Count()-1 == aIdx.GetIndex() ) in CanJoinNext()
1842 *pIdx = aIdx; in CanJoinNext()
1852 SwNodeIndex aIdx( *this, -1 ); in CanJoinPrev() local
1855 while( aIdx.GetIndex() && in CanJoinPrev()
1856 (( pNd = &aIdx.GetNode())->IsSectionNode() || in CanJoinPrev()
1858 aIdx--; in CanJoinPrev()
1860 if( pNd->GetNodeType() != nNdType || 0 == aIdx.GetIndex() ) in CanJoinPrev()
1863 *pIdx = aIdx; in CanJoinPrev()