Lines Matching refs:rOther
59 const Context& rOther) const in EvaluateMatch()
61 const bool bApplicationNameIsAny (rOther.msApplication.equalsAscii(AnyApplicationName)); in EvaluateMatch()
62 if (rOther.msApplication.equals(msApplication) || bApplicationNameIsAny) in EvaluateMatch()
65 const bool bContextNameIsAny (rOther.msContext.equalsAscii(AnyContextName)); in EvaluateMatch()
66 if (rOther.msContext.equals(msContext) || bContextNameIsAny) in EvaluateMatch()
106 bool Context::operator== (const Context& rOther) const in operator ==()
108 return msApplication.equals(rOther.msApplication) in operator ==()
109 && msContext.equals(rOther.msContext); in operator ==()
115 bool Context::operator!= (const Context& rOther) const in operator !=()
117 return ( ! msApplication.equals(rOther.msApplication)) in operator !=()
118 || ( ! msContext.equals(rOther.msContext)); in operator !=()