Lines Matching refs:operator
63 inline ORef<T>& ORef<T>::operator= (const ORef<T>& handle)
100 inline void ORef<T>::operator= (T* pBody)
106 inline T& ORef<T>::operator() () const
108 VOS_PRECOND(m_refBody, "ORef::operator(): can't deref nil body!");
113 inline T& ORef<T>::operator* () const
115 VOS_PRECOND(m_refBody, "ORef::operator*: can't deref nil body!");
120 inline T* ORef<T>::operator->() const
122 VOS_PRECOND(m_refBody, "ORef::operator->: nil body!");
159 inline sal_Bool ORef<T>::operator== (const ORef<T>& handle) const
165 inline sal_Bool ORef<T>::operator!= (const ORef<T>& handle) const
171 inline sal_Bool ORef<T>::operator== (const T* pBody) const
177 inline sal_Bool ORef<T>::operator< (const ORef<T>& handle) const
183 inline sal_Bool ORef<T>::operator> (const ORef<T>& handle) const