Lines Matching refs:source
206 Formattable::Formattable(const Formattable &source)
210 *this = source;
217 Formattable::operator=(const Formattable& source)
219 if (this != &source)
225 fType = source.fType;
230 fValue.fArrayAndCount.fCount = source.fValue.fArrayAndCount.fCount;
231 fValue.fArrayAndCount.fArray = createArrayCopy(source.fValue.fArrayAndCount.fArray,
232 source.fValue.fArrayAndCount.fCount);
236 fValue.fString = new UnicodeString(*source.fValue.fString);
240 fValue.fDouble = source.fValue.fDouble;
245 fValue.fInt64 = source.fValue.fInt64;
249 fValue.fDate = source.fValue.fDate;
252 fValue.fObject = objectClone(source.fValue.fObject);
257 if (source.fDecimalNum != NULL) {
258 fDecimalNum = new DigitList(*source.fDecimalNum);
260 if (source.fDecimalStr != NULL) {
261 fDecimalStr = new DecimalNumberString(*source.fDecimalStr, status);