Home | History | Annotate | Download | only in cintltst

Lines Matching defs:tzID

99     UChar tzID[4];
131 /*get Illegal TZID where index >= count*/
134 log_err("FAIL:for TZID index >= count Expected INDEX_OUTOFBOUNDS_ERROR Got %s\n", u_errorName(status));
278 u_uastrcpy(tzID, "PST");
279 caldef=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
284 caldef2=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
288 u_strcpy(tzID, fgGMTID);
289 calfr=ucal_open(tzID, u_strlen(tzID), "fr_FR", UCAL_TRADITIONAL, &status);
293 calit=ucal_open(tzID, u_strlen(tzID), "it_IT", UCAL_TRADITIONAL, &status);
491 UChar tzID[4];
505 u_strcpy(tzID, fgGMTID);
507 caldef=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
508 caldef2=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
509 caldef3=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
610 u_uastrcpy(tzID, "PST");
611 ucal_setTimeZone(caldef2,tzID, 3, &status);
621 } else if (u_strcmp(id, tzID) != 0) {
622 log_err("FAIL: getTimeZoneID returns a wrong ID: actual=%d, expected=%s\n", austrdup(id), austrdup(tzID));
636 u_strcpy(tzID, fgGMTID);
637 ucal_setTimeZone(caldef2, tzID, 3, &status);
755 UChar tzID[4];
761 u_strcpy(tzID, fgGMTID);
763 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
917 UChar tzID[32];
926 u_uastrcpy(tzID, "PST");
928 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_GREGORIAN, &status);;
1020 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);
1078 u_uastrcpy(tzID, itemPtr->zone);
1079 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_GREGORIAN, &status);
1110 UChar tzID[4];
1114 u_uastrcpy(tzID, "PST");
1116 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_GREGORIAN, &status);;
1210 UChar tzID[4];
1212 u_strcpy(tzID, fgGMTID);
1214 cal=ucal_open(tzID, u_strlen(tzID), "en_US", UCAL_TRADITIONAL, &status);;
1283 UChar tzID[4];
1286 u_strcpy(tzID, fgGMTID);
1287 gmtcal=ucal_open(tzID, 3, "en_US", UCAL_TRADITIONAL, &status);;
1292 u_uastrcpy(tzID, "PST");
1293 cal = ucal_open(tzID, 3, "en_US", UCAL_TRADITIONAL, &status);
1955 UChar tzID[32];
1959 u_uastrcpy(tzID, "America/New_York");
1960 ucal = ucal_open(tzID, -1, NULL, UCAL_DEFAULT, &status);
2408 UChar tzID[64];
2413 len = ucal_getTimeZoneIDForWindowsID(winEastern, -1, NULL, tzID, sizeof(tzID)/sizeof(tzID[0]), &status);
2416 } else if (len != u_strlen(tzNewYork) || u_strncmp(tzID, tzNewYork, len) != 0) {
2422 len = ucal_getTimeZoneIDForWindowsID(winEastern, u_strlen(winEastern), "US", tzID, sizeof(tzID)/sizeof(tzID[0]), &status);
2425 } else if (len != u_strlen(tzNewYork) || u_strncmp(tzID, tzNewYork, len) != 0) {
2431 len = ucal_getTimeZoneIDForWindowsID(winEastern, u_strlen(winEastern), "CA", tzID, sizeof(tzID)/sizeof(tzID[0]), &status);
2434 } else if (len != u_strlen(tzTronto) || u_strncmp(tzID, tzTronto, len) != 0) {
2441 len = ucal_getTimeZoneIDForWindowsID(sBogus, -1, NULL, tzID, sizeof(tzID)/sizeof(tzID[0]), &status);