Lines Matching refs:nBegin
275 void SwWrongList::_Invalidate( xub_StrLen nBegin, xub_StrLen nEnd ) in _Invalidate() argument
277 if ( nBegin < GetBeginInv() ) in _Invalidate()
278 nBeginInvalid = nBegin; in _Invalidate()
283 void SwWrongList::SetInvalid( xub_StrLen nBegin, xub_StrLen nEnd ) in SetInvalid() argument
285 nBeginInvalid = nBegin; in SetInvalid()
424 void SwWrongList::Invalidate( xub_StrLen nBegin, xub_StrLen nEnd ) in Invalidate() argument
427 SetInvalid( nBegin, nEnd ); in Invalidate()
429 _Invalidate( nBegin, nEnd ); in Invalidate()
590 void SwWrongList::RemoveEntry( xub_StrLen nBegin, xub_StrLen nEnd ) { in RemoveEntry() argument
594 while( aIter != maList.end() && (*aIter).mnPos < nBegin ) in RemoveEntry()
601 while( aIter != maList.end() && nBegin < nEnd && nEnd > (*aIter).mnPos ) in RemoveEntry()
609 …while( aIter != maList.end() && nBegin == (*aIter).mnPos && nEnd == (*aIter).mnPos +(*aIter).mnLen… in RemoveEntry()
619 bool SwWrongList::LookForEntry( xub_StrLen nBegin, xub_StrLen nEnd ) { in LookForEntry() argument
621 while( aIter != maList.end() && (*aIter).mnPos < nBegin ) in LookForEntry()
623 … if( aIter != maList.end() && nBegin == (*aIter).mnPos && nEnd == (*aIter).mnPos +(*aIter).mnLen ) in LookForEntry()