Lines Matching refs:handle
47 inline ORef<T>::ORef(const ORef<T>& handle) argument
49 m_refBody= handle.m_refBody;
63 inline ORef<T>& ORef<T>::operator= (const ORef<T>& handle) argument
68 m_refBody= handle.m_refBody;
153 inline sal_Bool ORef<T>::isEqualBody(const ORef<T>& handle) const
155 return m_refBody == handle.m_refBody;
159 inline sal_Bool ORef<T>::operator== (const ORef<T>& handle) const
161 return m_refBody == handle.m_refBody;
165 inline sal_Bool ORef<T>::operator!= (const ORef<T>& handle) const
167 return m_refBody != handle.m_refBody;
177 inline sal_Bool ORef<T>::operator< (const ORef<T>& handle) const
179 return m_refBody < handle.m_refBody;
183 inline sal_Bool ORef<T>::operator> (const ORef<T>& handle) const
185 return m_refBody > handle.m_refBody;