Searched refs:fArrayAndCount (Results 1 – 2 of 2) sorted by relevance
203 fValue.fArrayAndCount.fArray = createArrayCopy(arrayToCopy, count); in Formattable()204 fValue.fArrayAndCount.fCount = count; in Formattable()235 fValue.fArrayAndCount.fCount = source.fValue.fArrayAndCount.fCount; in operator =()236 fValue.fArrayAndCount.fArray = createArrayCopy(source.fValue.fArrayAndCount.fArray, in operator =()237 source.fValue.fArrayAndCount.fCount); in operator =()305 if (fValue.fArrayAndCount.fCount != that.fValue.fArrayAndCount.fCount) { in operator ==()310 for (i=0; i<fValue.fArrayAndCount.fCount; ++i) { in operator ==()311 if (fValue.fArrayAndCount.fArray[i] != that.fValue.fArrayAndCount.fArray[i]) { in operator ==()347 delete[] fValue.fArrayAndCount.fArray; in dispose()591 fValue.fArrayAndCount.fArray = createArrayCopy(array, count); in setArray()[all …]
442 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; } in getArray()463 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }699 } fArrayAndCount; member