Home
last modified time | relevance | path

Searched refs:fArrayAndCount (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/i18n/
Dfmtable.cpp201 fValue.fArrayAndCount.fArray = createArrayCopy(arrayToCopy, count); in Formattable()
202 fValue.fArrayAndCount.fCount = count; in Formattable()
233 fValue.fArrayAndCount.fCount = source.fValue.fArrayAndCount.fCount; in operator =()
234 fValue.fArrayAndCount.fArray = createArrayCopy(source.fValue.fArrayAndCount.fArray, in operator =()
235 source.fValue.fArrayAndCount.fCount); in operator =()
303 if (fValue.fArrayAndCount.fCount != that.fValue.fArrayAndCount.fCount) { in operator ==()
308 for (i=0; i<fValue.fArrayAndCount.fCount; ++i) { in operator ==()
309 if (fValue.fArrayAndCount.fArray[i] != that.fValue.fArrayAndCount.fArray[i]) { in operator ==()
345 delete[] fValue.fArrayAndCount.fArray; in dispose()
594 fValue.fArrayAndCount.fArray = createArrayCopy(array, count); in setArray()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dfmtable.h448 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; } in getArray()
469 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
704 } fArrayAndCount; member