Lines Matching refs:that
83 DateTimeRule::operator==(const DateTimeRule& that) const { in operator ==()
84 return ((this == &that) || in operator ==()
85 (typeid(*this) == typeid(that) && in operator ==()
86 fMonth == that.fMonth && in operator ==()
87 fDayOfMonth == that.fDayOfMonth && in operator ==()
88 fDayOfWeek == that.fDayOfWeek && in operator ==()
89 fWeekInMonth == that.fWeekInMonth && in operator ==()
90 fMillisInDay == that.fMillisInDay && in operator ==()
91 fDateRuleType == that.fDateRuleType && in operator ==()
92 fTimeRuleType == that.fTimeRuleType)); in operator ==()
96 DateTimeRule::operator!=(const DateTimeRule& that) const { in operator !=()
97 return !operator==(that); in operator !=()