Lines Matching refs:rOther
69 sal_Bool replaces (const CntHTTPCookie& rOther) const in replaces()
71 return ((m_aDomain == rOther.m_aDomain) && in replaces()
72 (m_aPath == rOther.m_aPath ) && in replaces()
73 (m_aName == rOther.m_aName ) ); in replaces()
76 sal_Bool operator== (const CntHTTPCookie& rOther) const in operator ==()
78 return ((m_aName == rOther.m_aName ) && in operator ==()
79 (m_aValue == rOther.m_aValue ) && in operator ==()
80 (m_aDomain == rOther.m_aDomain ) && in operator ==()
81 (m_aPath == rOther.m_aPath ) && in operator ==()
82 (m_aExpires == rOther.m_aExpires) && in operator ==()
83 (m_nFlags == rOther.m_nFlags ) && in operator ==()
84 (m_nPolicy == rOther.m_nPolicy ) ); in operator ==()