Home
last modified time | relevance | path

Searched refs:_rRH (Results 1 – 8 of 8) sorted by relevance

/AOO42X/main/connectivity/source/commontools/
H A DFValue.cxx363 ORowSetValue& ORowSetValue::operator=(const ORowSetValue& _rRH) in operator =() argument
365 if(&_rRH == this) in operator =()
368 … if ( m_eTypeKind != _rRH.m_eTypeKind || (_rRH.m_bNull && !m_bNull) || m_bSigned != _rRH.m_bSigned) in operator =()
371 m_bBound = _rRH.m_bBound; in operator =()
372 m_eTypeKind = _rRH.m_eTypeKind; in operator =()
373 m_bSigned = _rRH.m_bSigned; in operator =()
375 if(m_bNull && !_rRH.m_bNull) in operator =()
377 switch(_rRH.m_eTypeKind) in operator =()
384 rtl_uString_acquire(_rRH.m_aValue.m_pString); in operator =()
385 m_aValue.m_pString = _rRH.m_aValue.m_pString; in operator =()
[all …]
/AOO42X/main/connectivity/inc/connectivity/
H A DFValue.hxx81 ORowSetValue(const ORowSetValue& _rRH) in ORowSetValue() argument
89 operator=(_rRH); in ORowSetValue()
92 ORowSetValue(const ::rtl::OUString& _rRH) in ORowSetValue() argument
100 operator=(_rRH); in ORowSetValue()
103 ORowSetValue(const double& _rRH) in ORowSetValue() argument
111 operator=(_rRH); in ORowSetValue()
114 ORowSetValue(const float& _rRH) in ORowSetValue() argument
122 operator=(_rRH); in ORowSetValue()
125 ORowSetValue(const sal_Int8& _rRH) in ORowSetValue() argument
133 operator=(_rRH); in ORowSetValue()
[all …]
H A DCommonTools.hxx85 ORefVector(const ORefVector& _rRH) : m_vector(_rRH.m_vector),m_refCount(0) in ORefVector() argument
88 ORefVector& operator=(const ORefVector& _rRH) in operator =() argument
90 if ( &_rRH != this ) in operator =()
92 m_vector = _rRH.m_vector; in operator =()
/AOO42X/main/dbaccess/source/core/api/
H A DRowSetCacheIterator.cxx38 ORowSetCacheIterator::ORowSetCacheIterator(const ORowSetCacheIterator& _rRH) in ORowSetCacheIterator() argument
39 : m_aIter(_rRH.m_aIter) in ORowSetCacheIterator()
40 , m_pCache(_rRH.m_pCache) in ORowSetCacheIterator()
41 ,m_pRowSet(_rRH.m_pRowSet) in ORowSetCacheIterator()
51 ORowSetCacheIterator& ORowSetCacheIterator::operator =(const ORowSetCacheIterator& _rRH) in operator =() argument
53 if(this == &_rRH) in operator =()
56 m_pCache = _rRH.m_pCache; in operator =()
57 m_aIter = _rRH.m_aIter; in operator =()
58 m_pRowSet = _rRH.m_pRowSet; in operator =()
101 bool ORowSetCacheIterator::operator <=(const ORowSetMatrix::iterator& _rRH) const in operator <=()
[all …]
H A DRowSetCacheIterator.hxx61 ORowSetCacheIterator(const ORowSetCacheIterator& _rRH);
74 bool operator <=(const ORowSetMatrix::iterator& _rRH) const;
75 bool operator <(const ORowSetMatrix::iterator& _rRH) const;
76 bool operator !=(const ORowSetMatrix::iterator& _rRH) const;
77 bool operator ==(const ORowSetMatrix::iterator& _rRH) const;
H A DRowSetRow.hxx50 ORowSetOldRowHelper& operator=(const ORowSetOldRowHelper& _rRH);
85 sal_Bool operator ()(const ORowSetRow& _rRH) in operator ()() argument
87 switch((_rRH->get())[0].getTypeKind()) in operator ()()
92 return comphelper::getINT32(m_rAny) == (sal_Int32)(_rRH->get())[0]; in operator ()()
97 return aSeq == (_rRH->get())[0]; in operator ()()
/AOO42X/main/connectivity/source/inc/odbc/
H A DOResultSet.hxx77 const ::com::sun::star::uno::Sequence<sal_Int8>& _rRH) const in operator ()()
79 if(_rLH.getLength() == _rRH.getLength()) in operator ()()
85 const sal_Int8* pRHBack = _rRH.getConstArray() + nCount - 1; in operator ()()
101 …onst sal_Int32*>(_rLH.getConstArray()) < *reinterpret_cast<const sal_Int32*>(_rRH.getConstArray()); in operator ()()
105 return _rLH.getLength() < _rRH.getLength(); in operator ()()
/AOO42X/main/connectivity/inc/connectivity/sdbcx/
H A DVDescriptor.hxx81 inline sal_Bool operator == ( const ::rtl::OUString & _rRH ) in operator ==() argument
83 return m_aCase(m_Name,_rRH); in operator ==()