Lines Matching refs:AAZTDATA
3537 static const TestAddAcrossZoneTransitionData AAZTDATA[] = variable
3683 for (int32_t i = 0; AAZTDATA[i].zone; i++) { in TestAddAcrossZoneTransition()
3685 TimeZone *tz = TimeZone::createTimeZone(AAZTDATA[i].zone); in TestAddAcrossZoneTransition()
3687 cal.setSkippedWallTimeOption(AAZTDATA[i].skippedWTOpt); in TestAddAcrossZoneTransition()
3688 AAZTDATA[i].base.setTo(cal); in TestAddAcrossZoneTransition()
3689 cal.add(UCAL_DATE, AAZTDATA[i].deltaDays, status); in TestAddAcrossZoneTransition()
3692 if (!AAZTDATA[i].expected.isEquivalentTo(cal, status)) { in TestAddAcrossZoneTransition()
3696 const char *optDisp = AAZTDATA[i].skippedWTOpt == UCAL_WALLTIME_FIRST ? "FIRST" : in TestAddAcrossZoneTransition()
3697 AAZTDATA[i].skippedWTOpt == UCAL_WALLTIME_LAST ? "LAST" : "NEXT_VALID"; in TestAddAcrossZoneTransition()
3698 …dataerrln(UnicodeString("Error: base:") + AAZTDATA[i].base.toString(buf, sizeof(buf)) + ", tz:" + … in TestAddAcrossZoneTransition()
3699 + ", delta:" + AAZTDATA[i].deltaDays + " day(s), opt:" + optDisp in TestAddAcrossZoneTransition()
3701 + " - expected:" + AAZTDATA[i].expected.toString(buf, sizeof(buf))); in TestAddAcrossZoneTransition()