Lines Matching refs:nPos

367 SwNode::SwNode( SwNodes& rNodes, sal_uLong nPos, const sal_uInt8 nNdType )  in SwNode()  argument
374 if( nPos ) in SwNode()
376 SwNode* pNd = rNodes[ nPos - 1 ]; in SwNode()
377 rNodes.InsertNode( pInsNd, nPos ); in SwNode()
390 rNodes.InsertNode( pInsNd, nPos ); in SwNode()
834 sal_uInt16 nPos; in FindOutlineNodeOfLevel() local
837 if( !rONds.Seek_Entry( pNd, &nPos )) in FindOutlineNodeOfLevel()
839 if( nPos ) in FindOutlineNodeOfLevel()
840 nPos = nPos-1; in FindOutlineNodeOfLevel()
868 while( nPos && in FindOutlineNodeOfLevel()
869 nLvl < ( pRet = rONds[nPos]->GetTxtNode() ) in FindOutlineNodeOfLevel()
872 --nPos; in FindOutlineNodeOfLevel()
874 if( !nPos ) // bei 0 gesondert holen !! in FindOutlineNodeOfLevel()
953 SwStartNode::SwStartNode( SwNodes& rNodes, sal_uLong nPos ) in SwStartNode() argument
954 : SwNode( rNodes, nPos, ND_STARTNODE ), eSttNdTyp( SwNormalStartNode ) in SwStartNode()
1011 SwEndNode::SwEndNode( SwNodes& rNds, sal_uLong nPos, SwStartNode& rSttNd ) in SwEndNode() argument
1012 : SwNode( rNds, nPos, ND_ENDNODE ) in SwEndNode()
1232 xub_StrLen nPos = pIdx->GetIndex(); in GoNext() local
1239 nPos = (xub_StrLen)pBreakIt->GetBreakIter()->nextCharacters( rTNd.GetTxt(), nPos, in GoNext()
1240 pBreakIt->GetLocale( rTNd.GetLang( nPos ) ), in GoNext()
1248 SwScriptInfo::GetBoundsOfHiddenRange( rTNd, nPos, nHiddenStart, nHiddenEnd ); in GoNext()
1249 if ( nHiddenStart != STRING_LEN && nHiddenStart != nPos ) in GoNext()
1250 nPos = nHiddenEnd; in GoNext()
1254 *pIdx = nPos; in GoNext()
1258 else if( nPos < rTNd.GetTxt().Len() ) in GoNext()
1280 xub_StrLen nPos = pIdx->GetIndex(); in GoPrevious() local
1287nPos = (xub_StrLen)pBreakIt->GetBreakIter()->previousCharacters( rTNd.GetTxt(), nPos, in GoPrevious()
1288 pBreakIt->GetLocale( rTNd.GetLang( nPos ) ), in GoPrevious()
1296 SwScriptInfo::GetBoundsOfHiddenRange( rTNd, nPos, nHiddenStart, nHiddenEnd ); in GoPrevious()
1298 nPos = nHiddenStart; in GoPrevious()
1302 *pIdx = nPos; in GoPrevious()
1306 else if( nPos ) in GoPrevious()
1966 sal_uInt16 nPos; in IsAnyCondition() local
1970 if( !rOutlNds.Seek_Entry( (SwCntntNode*)this, &nPos ) && nPos ) in IsAnyCondition()
1971 --nPos; in IsAnyCondition()
1972 if( nPos < rOutlNds.Count() && in IsAnyCondition()
1973 rOutlNds[ nPos ]->GetIndex() < GetIndex() ) in IsAnyCondition()
1975 SwTxtNode* pOutlNd = rOutlNds[ nPos ]->GetTxtNode(); in IsAnyCondition()