Lines Matching refs:xub_StrLen

54 	xub_StrLen	nIndex;
58 SwIndex& ChgValue( const SwIndex& rIdx, xub_StrLen nNewValue );
62 explicit SwIndex(SwIndexReg *const pReg, xub_StrLen const nIdx = 0);
67 INLINE xub_StrLen operator++();
68 INLINE xub_StrLen operator--();
70 INLINE xub_StrLen operator++(int);
71 INLINE xub_StrLen operator--(int);
74 INLINE xub_StrLen operator+=( xub_StrLen );
75 INLINE xub_StrLen operator-=( xub_StrLen );
76 INLINE xub_StrLen operator+=( const SwIndex& );
77 INLINE xub_StrLen operator-=( const SwIndex& );
89 sal_Bool operator<( xub_StrLen nWert ) const { return nIndex < nWert; } in operator <()
90 sal_Bool operator<=( xub_StrLen nWert ) const { return nIndex <= nWert; } in operator <=()
91 sal_Bool operator>( xub_StrLen nWert ) const { return nIndex > nWert; } in operator >()
92 sal_Bool operator>=( xub_StrLen nWert ) const { return nIndex >= nWert; } in operator >=()
93 sal_Bool operator==( xub_StrLen nWert ) const { return nIndex == nWert; } in operator ==()
94 sal_Bool operator!=( xub_StrLen nWert ) const { return nIndex != nWert; } in operator !=()
96 INLINE SwIndex& operator=( xub_StrLen );
100 xub_StrLen GetIndex() const { return nIndex; } in GetIndex()
104 SwIndex &Assign(SwIndexReg *,xub_StrLen);
128 virtual void Update( SwIndex const & rPos, const xub_StrLen nChangeLen,
148 inline xub_StrLen SwIndex::operator++() in operator ++()
152 inline xub_StrLen SwIndex::operator--() in operator --()
157 inline xub_StrLen SwIndex::operator++(int) in operator ++()
159 xub_StrLen nOldIndex = nIndex; in operator ++()
163 inline xub_StrLen SwIndex::operator--(int) in operator --()
165 xub_StrLen nOldIndex = nIndex; in operator --()
171 inline xub_StrLen SwIndex::operator+=( xub_StrLen nWert ) in operator +=()
175 inline xub_StrLen SwIndex::operator-=( xub_StrLen nWert ) in operator -=()
179 inline xub_StrLen SwIndex::operator+=( const SwIndex& rIndex ) in operator +=()
183 inline xub_StrLen SwIndex::operator-=( const SwIndex& rIndex ) in operator -=()
204 inline SwIndex& SwIndex::operator=( xub_StrLen nWert ) in operator =()