Home | History | Annotate | Download | only in i18n

Lines Matching refs:fZoneStrings

257  * Create a copy, in fZoneStrings, of the given zone strings array.  The
267 fZoneStrings = (UnicodeString **)uprv_malloc(fZoneStringsRowCount * sizeof(UnicodeString *));
268 if (fZoneStrings != NULL) {
271 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount);
272 if (fZoneStrings[row] == NULL) {
278 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]);
282 // If memory allocation failed, roll back and delete fZoneStrings
285 delete[] fZoneStrings[i];
287 uprv_free(fZoneStrings);
288 fZoneStrings = NULL;
332 if (other.fZoneStrings != NULL) {
335 createZoneStrings((const UnicodeString**)other.fZoneStrings);
338 fZoneStrings = NULL;
400 if (fZoneStrings) {
402 delete[] fZoneStrings[row];
404 uprv_free(fZoneStrings);
413 fZoneStrings = NULL;
492 // Compare the contents of fZoneStrings
493 if (fZoneStrings == NULL && other.fZoneStrings == NULL) {
497 } else if (fZoneStrings != NULL && other.fZoneStrings != NULL) {
502 cmpres = arrayCompare(fZoneStrings[i], other.fZoneStrings[i], fZoneStringsColCount);
1070 if (fZoneStrings == NULL) {
1076 result = (const UnicodeString**)fZoneStrings;
1091 if (fZoneStrings != NULL || fLocaleZoneStrings != NULL) {
1394 fZoneStrings = NULL;