Lines Matching refs:rKey

58 			inline ONDXKey(const ONDXKey& rKey);
60 inline ONDXKey& operator= (const ONDXKey& rKey);
69 sal_Bool operator == (const ONDXKey& rKey) const;
70 sal_Bool operator != (const ONDXKey& rKey) const;
71 sal_Bool operator < (const ONDXKey& rKey) const;
72 sal_Bool operator <= (const ONDXKey& rKey) const;
73 sal_Bool operator > (const ONDXKey& rKey) const;
74 sal_Bool operator >= (const ONDXKey& rKey) const;
82 StringCompare Compare(const ONDXKey& rKey) const;
186 sal_uInt16 FindPos(const ONDXKey& rKey) const;
233 ONDXNode(const ONDXKey& rKey, in ONDXNode() argument
235 :aChild(aPagePtr),aKey(rKey) {} in ONDXNode()
247 void SetKey(ONDXKey& rKey) {aKey = rKey;} in SetKey() argument
282 inline ONDXKey::ONDXKey(const ONDXKey& rKey) in ONDXKey() argument
283 : ONDXKey_BASE(rKey.getDBType()) in ONDXKey()
284 ,nRecord(rKey.nRecord) in ONDXKey()
285 ,xValue(rKey.xValue) in ONDXKey()
289 inline ONDXKey& ONDXKey::operator=(const ONDXKey& rKey) in operator =() argument
291 if(&rKey == this) in operator =()
294 xValue = rKey.xValue; in operator =()
295 nRecord = rKey.nRecord; in operator =()
296 m_eDBType = rKey.getDBType(); in operator =()
300 inline sal_Bool ONDXKey::operator == (const ONDXKey& rKey) const in operator ==()
302 if(&rKey == this) in operator ==()
304 return Compare(rKey) == COMPARE_EQUAL; in operator ==()
306 inline sal_Bool ONDXKey::operator != (const ONDXKey& rKey) const in operator !=()
308 return !operator== (rKey); in operator !=()
310 inline sal_Bool ONDXKey::operator < (const ONDXKey& rKey) const in operator <()
312 return Compare(rKey) == COMPARE_LESS; in operator <()
314 inline sal_Bool ONDXKey::operator > (const ONDXKey& rKey) const in operator >()
316 return Compare(rKey) == COMPARE_GREATER; in operator >()
318 inline sal_Bool ONDXKey::operator <= (const ONDXKey& rKey) const in operator <=()
320 return !operator > (rKey); in operator <=()
322 inline sal_Bool ONDXKey::operator >= (const ONDXKey& rKey) const in operator >=()
324 return !operator< (rKey); in operator >=()