Lines Matching refs:handle
79 inline Reference (const Reference<reference_type> & handle) in Reference() argument
80 : m_pBody (handle.m_pBody) in Reference()
115 SAL_CALL operator= (const Reference<reference_type> & handle) in operator =() argument
117 return set( handle.m_pBody ); in operator =()
194 SAL_CALL operator== (const Reference<reference_type> & handle) const in operator ==()
196 return (m_pBody == handle.m_pBody); in operator ==()
203 SAL_CALL operator!= (const Reference<reference_type> & handle) const in operator !=()
205 return (m_pBody != handle.m_pBody); in operator !=()
212 SAL_CALL operator< (const Reference<reference_type> & handle) const in operator <()
214 return (m_pBody < handle.m_pBody); in operator <()
221 SAL_CALL operator> (const Reference<reference_type> & handle) const in operator >()
223 return (m_pBody > handle.m_pBody); in operator >()