Lines Matching refs:vtz
1049 VTimeZone *vtz = (VTimeZone*)&that; in operator ==() local
1050 if (*tz == *(vtz->tz) in operator ==()
1051 && tzurl == vtz->tzurl in operator ==()
1052 && lastmod == vtz->lastmod in operator ==()
1067 VTimeZone *vtz = new VTimeZone(); in createVTimeZoneByID() local
1068 if (vtz == nullptr) { in createVTimeZoneByID()
1071 vtz->tz = (BasicTimeZone*)TimeZone::createTimeZone(ID); in createVTimeZoneByID()
1072 vtz->tz->getID(vtz->olsonzid); in createVTimeZoneByID()
1082 vtz->icutzver.setTo(versionStr, len); in createVTimeZoneByID()
1085 return vtz; in createVTimeZoneByID()
1093 VTimeZone *vtz = new VTimeZone(); in createVTimeZoneFromBasicTimeZone() local
1094 if (vtz == nullptr) { in createVTimeZoneFromBasicTimeZone()
1098 vtz->tz = basic_time_zone.clone(); in createVTimeZoneFromBasicTimeZone()
1099 if (vtz->tz == nullptr) { in createVTimeZoneFromBasicTimeZone()
1101 delete vtz; in createVTimeZoneFromBasicTimeZone()
1104 vtz->tz->getID(vtz->olsonzid); in createVTimeZoneFromBasicTimeZone()
1113 vtz->icutzver.setTo(versionStr, len); in createVTimeZoneFromBasicTimeZone()
1116 return vtz; in createVTimeZoneFromBasicTimeZone()
1125 VTimeZone *vtz = new VTimeZone(); in createVTimeZone() local
1126 if (vtz == nullptr) { in createVTimeZone()
1130 vtz->load(reader, status); in createVTimeZone()
1132 delete vtz; in createVTimeZone()
1135 return vtz; in createVTimeZone()