Lines Matching refs:rIndex
168 inline sal_Bool SwNodeIndex::operator<( const SwNodeIndex& rIndex ) const in operator <()
170 return pNd->GetIndex() < rIndex.GetIndex(); in operator <()
172 inline sal_Bool SwNodeIndex::operator<=( const SwNodeIndex& rIndex ) const in operator <=()
174 return pNd->GetIndex() <= rIndex.GetIndex(); in operator <=()
176 inline sal_Bool SwNodeIndex::operator>( const SwNodeIndex& rIndex ) const in operator >()
178 return pNd->GetIndex() > rIndex.GetIndex(); in operator >()
180 inline sal_Bool SwNodeIndex::operator>=( const SwNodeIndex& rIndex ) const in operator >=()
182 return pNd->GetIndex() >= rIndex.GetIndex(); in operator >=()
224 inline sal_uLong SwNodeIndex::operator+=( const SwNodeIndex& rIndex ) in operator +=() argument
226 return ( pNd = GetNodes()[ pNd->GetIndex() + rIndex.GetIndex() ] )->GetIndex(); in operator +=()
228 inline sal_uLong SwNodeIndex::operator-=( const SwNodeIndex& rIndex ) in operator -=() argument
230 return ( pNd = GetNodes()[ pNd->GetIndex() - rIndex.GetIndex() ] )->GetIndex(); in operator -=()