Lines Matching refs:fZoneStrings
337 fZoneStrings = (UnicodeString **)uprv_malloc(fZoneStringsRowCount * sizeof(UnicodeString *)); in createZoneStrings()
338 if (fZoneStrings != NULL) { in createZoneStrings()
341 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount); in createZoneStrings()
342 if (fZoneStrings[row] == NULL) { in createZoneStrings()
348 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]); in createZoneStrings()
355 delete[] fZoneStrings[i]; in createZoneStrings()
357 uprv_free(fZoneStrings); in createZoneStrings()
358 fZoneStrings = NULL; in createZoneStrings()
427 if (other.fZoneStrings != NULL) { in copyData()
430 createZoneStrings((const UnicodeString**)other.fZoneStrings); in copyData()
433 fZoneStrings = NULL; in copyData()
503 if (fZoneStrings) { in disposeZoneStrings()
505 delete[] fZoneStrings[row]; in disposeZoneStrings()
507 uprv_free(fZoneStrings); in disposeZoneStrings()
516 fZoneStrings = NULL; in disposeZoneStrings()
616 if (fZoneStrings == NULL && other.fZoneStrings == NULL) { in operator ==()
620 } else if (fZoneStrings != NULL && other.fZoneStrings != NULL) { in operator ==()
625 … cmpres = arrayCompare(fZoneStrings[i], other.fZoneStrings[i], fZoneStringsColCount); in operator ==()
1250 if (fZoneStrings == NULL) { in getZoneStrings()
1256 result = (const UnicodeString**)fZoneStrings; in getZoneStrings()
1271 if (fZoneStrings != NULL || fLocaleZoneStrings != NULL) { in initZoneStringsArray()
2084 fZoneStrings = NULL; in initializeData()