Lines Matching refs:rOther
53 const Context& rOther) const in EvaluateMatch()
55 const bool bApplicationNameIsAny (rOther.msApplication.equalsAscii(AnyApplicationName)); in EvaluateMatch()
56 if (rOther.msApplication.equals(msApplication) || bApplicationNameIsAny) in EvaluateMatch()
59 const bool bContextNameIsAny (rOther.msContext.equalsAscii(AnyContextName)); in EvaluateMatch()
60 if (rOther.msContext.equals(msContext) || bContextNameIsAny) in EvaluateMatch()
94 bool Context::operator== (const Context& rOther) const in operator ==()
96 return msApplication.equals(rOther.msApplication) in operator ==()
97 && msContext.equals(rOther.msContext); in operator ==()
100 bool Context::operator!= (const Context& rOther) const in operator !=()
102 return ( ! msApplication.equals(rOther.msApplication)) in operator !=()
103 || ( ! msContext.equals(rOther.msContext)); in operator !=()