Lines Matching full:zarray
1061 UnicodeString ** zarray = NULL;
1075 zarray = (UnicodeString**)uprv_malloc(size);
1076 if (zarray == NULL) {
1080 uprv_memset(zarray, 0, size);
1094 zarray[i] = new UnicodeString[5];
1095 if (zarray[i] == NULL) {
1100 zarray[i][0].setTo(*tzid);
1101 zarray[i][1].setTo(tzNames->getDisplayName(*tzid, UTZNM_LONG_STANDARD, now, tzDispName));
1102 zarray[i][2].setTo(tzNames->getDisplayName(*tzid, UTZNM_SHORT_STANDARD, now, tzDispName));
1103 zarray[i][3].setTo(tzNames->getDisplayName(*tzid, UTZNM_LONG_DAYLIGHT, now, tzDispName));
1104 zarray[i][4].setTo(tzNames->getDisplayName(*tzid, UTZNM_SHORT_DAYLIGHT, now, tzDispName));
1111 if (zarray) {
1113 if (zarray[i]) {
1114 delete[] zarray[i];
1117 uprv_free(zarray);
1128 fLocaleZoneStrings = zarray;