Home | History | Annotate | Download | only in intltest

Lines Matching defs:tz

621         BasicTimeZone *tz = (BasicTimeZone*)TimeZone::createTimeZone(*tzid);
625 verifyTransitions(*tz, lo, hi);
627 delete tz;
656 BasicTimeZone *tz = (BasicTimeZone*)TimeZone::createTimeZone(*tzid);
657 int32_t ruleCount = tz->countTransitionRules(status);
661 tz->getTimeZoneRules(initial, trsrules, ruleCount, status);
686 compareTransitionsAscending(*tz, *rbtz, start, until, FALSE);
688 compareTransitionsAscending(*tz, *rbtz, start + 1, until, TRUE);
690 compareTransitionsDescending(*tz, *rbtz, start, until, FALSE);
692 compareTransitionsDescending(*tz, *rbtz, start + 1, until, TRUE);
696 delete tz;
793 BasicTimeZone *tz = (BasicTimeZone*)TimeZone::createTimeZone(*tzid);
827 tz->getOffset(startTime, FALSE, raw1, dst1, status);
838 UBool avail = tz->getNextTransition(startTime, FALSE, trans);
840 if (!vtz_new->hasEquivalentTransitions(*tz, trans.getTime(),
843 if (!hasEquivalentTransitions(*vtz_new, *tz, trans.getTime() + maxDelta,
863 delete tz;
893 BasicTimeZone *tz = (BasicTimeZone*)TimeZone::createTimeZone(*tzid);
917 tz->getOffset(startTime, FALSE, raw1, dst1, status);
928 UBool avail = tz->getNextTransition(startTime, FALSE, trans);
930 if (!vtz_new->hasEquivalentTransitions(*tz, trans.getTime(),
933 if (!hasEquivalentTransitions(*vtz_new, *tz, trans.getTime() + maxDelta,
955 delete tz;
1129 BasicTimeZone *tz = (BasicTimeZone*)TimeZone::createTimeZone(*tzid);
1132 tz->getSimpleRulesNear(testTimes[i], initial, std, dst, status);
1182 tz->getOffset(testTimes[i], FALSE, raw0, dst0, status);
1184 errln("FAIL: couldn't get offsets from tz for " + *tzid);
1191 errln("FAIL: rbtz created by simple rule does not match the original tz for tzid " + *tzid);
1194 delete tz;
2306 const TimeZone *tz = TimeZone::getGMT();
2307 Calendar *cal = Calendar::createInstance(*tz, status);