Home | History | Annotate | Download | only in intltest

Lines Matching defs:tzurl

1034  * Write out time zone rules of OlsonTimeZone into VTIMEZONE format with RFC2445 header TZURL and
1043 UnicodeString tzurl;
1063 // Check if TZURL and LAST-MODIFIED properties are preserved
1064 newvtz1->getTZURL(tzurl);
1065 if (tzurl != TESTURL1) {
1066 errln("FAIL: TZURL 1 was not preserved");
1075 // Set different tzurl
1087 // Check if TZURL and LAST-MODIFIED properties are preserved
1088 newvtz2->getTZURL(tzurl);
1089 if (tzurl != TESTURL2) {
1090 errln("FAIL: TZURL was not preserved in the second roundtrip");
1708 UnicodeString TZURL("http://icu-project.org/timezone");
1713 vtz->setTZURL(TZURL);
1714 if (!vtz->getTZURL(url) || url != TZURL) {