Home | History | Annotate | Download | only in common

Lines Matching defs:tzid

889     const char *tzid = NULL;
891 tzid = uprv_detectWindowsTimeZone();
893 if (tzid != NULL) {
894 return tzid;
901 tzid = getenv("TZFILE");
902 if (tzid != NULL) {
903 return tzid;
909 tzid = getenv("TZ");
910 if (tzid != NULL && isValidOlsonID(tzid))
913 if (uprv_strncmp(tzid, "posix/", 6) == 0
914 || uprv_strncmp(tzid, "right/", 6) == 0)
917 tzid += 6;
919 return tzid;
997 tzid = remapShortTimeZone(U_TZNAME[0], U_TZNAME[1], daylightType, uprv_timezone());
998 if (tzid != NULL) {
999 return tzid;