Home | History | Annotate | Download | only in common

Lines Matching defs:tzid

914     const char *tzid = NULL;
916 tzid = uprv_detectWindowsTimeZone();
918 if (tzid != NULL) {
919 return tzid;
926 tzid = getenv("TZFILE");
927 if (tzid != NULL) {
928 return tzid;
934 tzid = getenv("TZ");
935 if (tzid != NULL && isValidOlsonID(tzid))
938 if (uprv_strncmp(tzid, "posix/", 6) == 0
939 || uprv_strncmp(tzid, "right/", 6) == 0)
942 tzid += 6;
944 return tzid;
1024 tzid = remapShortTimeZone(U_TZNAME[0], U_TZNAME[1], daylightType, uprv_timezone());
1025 if (tzid != NULL) {
1026 return tzid;