Lines Matching refs:AAZTDATA
3470 static const TestAddAcrossZoneTransitionData AAZTDATA[] = variable
3616 for (int32_t i = 0; AAZTDATA[i].zone; i++) { in TestAddAcrossZoneTransition()
3618 TimeZone *tz = TimeZone::createTimeZone(AAZTDATA[i].zone); in TestAddAcrossZoneTransition()
3620 cal.setSkippedWallTimeOption(AAZTDATA[i].skippedWTOpt); in TestAddAcrossZoneTransition()
3621 AAZTDATA[i].base.setTo(cal); in TestAddAcrossZoneTransition()
3622 cal.add(UCAL_DATE, AAZTDATA[i].deltaDays, status); in TestAddAcrossZoneTransition()
3625 if (!AAZTDATA[i].expected.isEquivalentTo(cal, status)) { in TestAddAcrossZoneTransition()
3629 const char *optDisp = AAZTDATA[i].skippedWTOpt == UCAL_WALLTIME_FIRST ? "FIRST" : in TestAddAcrossZoneTransition()
3630 AAZTDATA[i].skippedWTOpt == UCAL_WALLTIME_LAST ? "LAST" : "NEXT_VALID"; in TestAddAcrossZoneTransition()
3631 …dataerrln(UnicodeString("Error: base:") + AAZTDATA[i].base.toString(buf, sizeof(buf)) + ", tz:" + … in TestAddAcrossZoneTransition()
3632 + ", delta:" + AAZTDATA[i].deltaDays + " day(s), opt:" + optDisp in TestAddAcrossZoneTransition()
3634 + " - expected:" + AAZTDATA[i].expected.toString(buf, sizeof(buf))); in TestAddAcrossZoneTransition()