Home | History | Annotate | Download | only in i18n

Lines Matching full:that

67 TimeZoneTransition::operator==(const TimeZoneTransition& that) const {
68 if (this == &that) {
71 if (typeid(*this) != typeid(that)) {
74 if (fTime != that.fTime) {
77 if ((fFrom == NULL && that.fFrom == NULL)
78 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) {
79 if ((fTo == NULL && that.fTo == NULL)
80 || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))) {
88 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const {
89 return !operator==(that);