Lines Matching refs:fZoneStrings
331 fZoneStrings = (UnicodeString **)uprv_malloc(fZoneStringsRowCount * sizeof(UnicodeString *)); in createZoneStrings()
332 if (fZoneStrings != NULL) { in createZoneStrings()
335 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount); in createZoneStrings()
336 if (fZoneStrings[row] == NULL) { in createZoneStrings()
342 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]); in createZoneStrings()
349 delete[] fZoneStrings[i]; in createZoneStrings()
351 uprv_free(fZoneStrings); in createZoneStrings()
352 fZoneStrings = NULL; in createZoneStrings()
409 if (other.fZoneStrings != NULL) { in copyData()
412 createZoneStrings((const UnicodeString**)other.fZoneStrings); in copyData()
415 fZoneStrings = NULL; in copyData()
479 if (fZoneStrings) { in disposeZoneStrings()
481 delete[] fZoneStrings[row]; in disposeZoneStrings()
483 uprv_free(fZoneStrings); in disposeZoneStrings()
492 fZoneStrings = NULL; in disposeZoneStrings()
577 if (fZoneStrings == NULL && other.fZoneStrings == NULL) { in operator ==()
581 } else if (fZoneStrings != NULL && other.fZoneStrings != NULL) { in operator ==()
586 … cmpres = arrayCompare(fZoneStrings[i], other.fZoneStrings[i], fZoneStringsColCount); in operator ==()
1211 if (fZoneStrings == NULL) { in getZoneStrings()
1217 result = (const UnicodeString**)fZoneStrings; in getZoneStrings()
1232 if (fZoneStrings != NULL || fLocaleZoneStrings != NULL) { in initZoneStringsArray()
1540 fZoneStrings = NULL; in initializeData()