Home | History | Annotate | Download | only in timezone

Lines Matching defs:tzurl

625      * Write out time zone rules of OlsonTimeZone into VTIMEZONE format with RFC2445 header TZURL and
631 String tzurl = "http://source.icu-project.org";
635 vtz.setTZURL(tzurl);
653 // Check if TZURL and LAST-MODIFIED headers are preserved
654 if (!(tzurl.equals(newvtz1.getTZURL()))) {
655 errln("FAIL: TZURL property is not preserved during the roundtrip conversion. Before:"
656 + tzurl + "/After:" + newvtz1.getTZURL());
669 // Set different tzurl
684 // Check if TZURL and LAST-MODIFIED headers are preserved
686 errln("FAIL: TZURL property is not preserved during the second roundtrip conversion. Before:"
1185 final String TZURL = "http://icu-project.org/timezone";
1186 String tzurl = vtz.getTZURL();
1187 if (tzurl != null) {
1190 vtz.setTZURL(TZURL);
1191 tzurl = vtz.getTZURL();
1192 if (!TZURL.equals(tzurl)) {