Lines Matching refs:nWert

81 	inline sal_Bool operator< ( sal_uLong nWert ) const;
82 inline sal_Bool operator<=( sal_uLong nWert ) const;
83 inline sal_Bool operator> ( sal_uLong nWert ) const;
84 inline sal_Bool operator>=( sal_uLong nWert ) const;
85 inline sal_Bool operator==( sal_uLong nWert ) const;
86 inline sal_Bool operator!=( sal_uLong nWert ) const;
144 inline sal_Bool SwNodeIndex::operator< ( sal_uLong nWert ) const in operator <()
146 return pNd->GetIndex() < nWert; in operator <()
148 inline sal_Bool SwNodeIndex::operator<=( sal_uLong nWert ) const in operator <=()
150 return pNd->GetIndex() <= nWert; in operator <=()
152 inline sal_Bool SwNodeIndex::operator> ( sal_uLong nWert ) const in operator >()
154 return pNd->GetIndex() > nWert; in operator >()
156 inline sal_Bool SwNodeIndex::operator>=( sal_uLong nWert ) const in operator >=()
158 return pNd->GetIndex() >= nWert; in operator >=()
160 inline sal_Bool SwNodeIndex::operator==( sal_uLong nWert ) const in operator ==()
162 return pNd->GetIndex() == nWert; in operator ==()
164 inline sal_Bool SwNodeIndex::operator!=( sal_uLong nWert ) const in operator !=()
166 return pNd->GetIndex() != nWert; in operator !=()
216 inline sal_uLong SwNodeIndex::operator+=( sal_uLong nWert ) in operator +=() argument
218 return ( pNd = GetNodes()[ pNd->GetIndex() + nWert ] )->GetIndex(); in operator +=()
220 inline sal_uLong SwNodeIndex::operator-=( sal_uLong nWert ) in operator -=() argument
222 return ( pNd = GetNodes()[ pNd->GetIndex() - nWert ] )->GetIndex(); in operator -=()
233 inline SwNodeIndex& SwNodeIndex::operator=( sal_uLong nWert ) in operator =() argument
235 pNd = GetNodes()[ nWert ]; in operator =()