Lines Matching refs:source
183 Formattable::Formattable(const Formattable &source)
184 : UObject(source), fType(kLong)
187 *this = source;
194 Formattable::operator=(const Formattable& source)
196 if (this != &source)
202 fType = source.fType;
207 fValue.fArrayAndCount.fCount = source.fValue.fArrayAndCount.fCount;
208 fValue.fArrayAndCount.fArray = createArrayCopy(source.fValue.fArrayAndCount.fArray,
209 source.fValue.fArrayAndCount.fCount);
213 fValue.fString = new UnicodeString(*source.fValue.fString);
217 fValue.fDouble = source.fValue.fDouble;
222 fValue.fInt64 = source.fValue.fInt64;
226 fValue.fDate = source.fValue.fDate;
229 fValue.fObject = objectClone(source.fValue.fObject);