Home | History | Annotate | Download | only in i18n

Lines Matching full:zarray

1062     UnicodeString ** zarray = NULL;
1076 zarray = (UnicodeString**)uprv_malloc(size);
1077 if (zarray == NULL) {
1081 uprv_memset(zarray, 0, size);
1095 zarray[i] = new UnicodeString[5];
1096 if (zarray[i] == NULL) {
1101 zarray[i][0].setTo(*tzid);
1102 zarray[i][1].setTo(tzNames->getDisplayName(*tzid, UTZNM_LONG_STANDARD, now, tzDispName));
1103 zarray[i][2].setTo(tzNames->getDisplayName(*tzid, UTZNM_SHORT_STANDARD, now, tzDispName));
1104 zarray[i][3].setTo(tzNames->getDisplayName(*tzid, UTZNM_LONG_DAYLIGHT, now, tzDispName));
1105 zarray[i][4].setTo(tzNames->getDisplayName(*tzid, UTZNM_SHORT_DAYLIGHT, now, tzDispName));
1112 if (zarray) {
1114 if (zarray[i]) {
1115 delete[] zarray[i];
1118 uprv_free(zarray);
1129 fLocaleZoneStrings = zarray;