Lines Matching full:zarray
1098 UnicodeString ** zarray = NULL;
1112 zarray = (UnicodeString**)uprv_malloc(size);
1113 if (zarray == NULL) {
1117 uprv_memset(zarray, 0, size);
1131 zarray[i] = new UnicodeString[5];
1132 if (zarray[i] == NULL) {
1137 zarray[i][0].setTo(*tzid);
1138 zarray[i][1].setTo(tzNames->getDisplayName(*tzid, UTZNM_LONG_STANDARD, now, tzDispName));
1139 zarray[i][2].setTo(tzNames->getDisplayName(*tzid, UTZNM_SHORT_STANDARD, now, tzDispName));
1140 zarray[i][3].setTo(tzNames->getDisplayName(*tzid, UTZNM_LONG_DAYLIGHT, now, tzDispName));
1141 zarray[i][4].setTo(tzNames->getDisplayName(*tzid, UTZNM_SHORT_DAYLIGHT, now, tzDispName));
1148 if (zarray) {
1150 if (zarray[i]) {
1151 delete[] zarray[i];
1154 uprv_free(zarray);
1165 fLocaleZoneStrings = zarray;