Home | History | Annotate | Download | only in cintltst

Lines Matching refs:tzID

107     UChar tzID[4];
139 /*get Illegal TZID where index >= count*/
142 log_err("FAIL:for TZID index >= count Expected INDEX_OUTOFBOUNDS_ERROR Got %s\n", u_errorName(status));
286 u_uastrcpy(tzID, "PST");
287 caldef=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
292 caldef2=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
296 u_strcpy(tzID, fgGMTID);
297 calfr=ucal_open(tzID, u_strlen(tzID), "fr_FR", UCAL_TRADITIONAL, &status);
301 calit=ucal_open(tzID, u_strlen(tzID), "it_IT", UCAL_TRADITIONAL, &status);
499 UChar tzID[4];
513 u_strcpy(tzID, fgGMTID);
515 caldef=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
516 caldef2=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
517 caldef3=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
618 u_uastrcpy(tzID, "PST");
619 ucal_setTimeZone(caldef2,tzID, 3, &status);
629 } else if (u_strcmp(id, tzID) != 0) {
630 log_err("FAIL: getTimeZoneID returns a wrong ID: actual=%d, expected=%s\n", austrdup(id), austrdup(tzID));
644 u_strcpy(tzID, fgGMTID);
645 ucal_setTimeZone(caldef2, tzID, 3, &status);
763 UChar tzID[4];
769 u_strcpy(tzID, fgGMTID);
771 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
925 UChar tzID[32];
934 u_uastrcpy(tzID, "PST");
936 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_GREGORIAN, &status);;
1028 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
1086 u_uastrcpy(tzID, itemPtr->zone);
1087 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_GREGORIAN, &status);
1118 UChar tzID[4];
1122 u_uastrcpy(tzID, "PST");
1124 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_GREGORIAN, &status);;
1218 UChar tzID[4];
1220 u_strcpy(tzID, fgGMTID);
1222 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);;
1291 UChar tzID[4];
1294 u_strcpy(tzID, fgGMTID);
1295 gmtcal=ucal_open(tzID, 3, "en_US", UCAL_TRADITIONAL, &status);;
1300 u_uastrcpy(tzID, "PST");
1301 cal = ucal_open(tzID, 3, "en_US", UCAL_TRADITIONAL, &status);
1963 UChar tzID[32];
1967 u_uastrcpy(tzID, "America/New_York");
1968 ucal = ucal_open(tzID, -1, NULL, UCAL_DEFAULT, &status);
2416 UChar tzID[64];
2421 len = ucal_getTimeZoneIDForWindowsID(winEastern, -1, NULL, tzID, UPRV_LENGTHOF(tzID), &status);
2424 } else if (len != u_strlen(tzNewYork) || u_strncmp(tzID, tzNewYork, len) != 0) {
2430 len = ucal_getTimeZoneIDForWindowsID(winEastern, u_strlen(winEastern), "US", tzID, UPRV_LENGTHOF(tzID), &status);
2433 } else if (len != u_strlen(tzNewYork) || u_strncmp(tzID, tzNewYork, len) != 0) {
2439 tzID, UPRV_LENGTHOF(tzID), &status);
2442 } else if (len != u_strlen(tzTronto) || u_strncmp(tzID, tzTronto, len) != 0) {
2449 len = ucal_getTimeZoneIDForWindowsID(sBogus, -1, NULL, tzID, UPRV_LENGTHOF(tzID), &status);