Lines Matching defs:that
90 RuleBasedTimeZone::operator==(const TimeZone& that) const {
91 if (this == &that) {
94 if (typeid(*this) != typeid(that)
95 || BasicTimeZone::operator==(that) == FALSE) {
98 RuleBasedTimeZone *rbtz = (RuleBasedTimeZone*)&that;
110 RuleBasedTimeZone::operator!=(const TimeZone& that) const {
111 return !operator==(that);
532 const RuleBasedTimeZone& that = (const RuleBasedTimeZone&)other;
533 if (*fInitialRule != *(that.fInitialRule)) {
536 if (compareRules(fHistoricRules, that.fHistoricRules)
537 && compareRules(fFinalRules, that.fFinalRules)) {