Lines Matching full:other
41 RelativeDateFormat::RelativeDateFormat(const RelativeDateFormat& other) :
42 DateFormat(other), fDateFormat(NULL), fTimeFormat(NULL), fCombinedFormat(NULL),
43 fDateStyle(other.fDateStyle), fTimeStyle(other.fTimeStyle), fLocale(other.fLocale),
44 fDayMin(other.fDayMin), fDayMax(other.fDayMax),
45 fDatesLen(other.fDatesLen), fDates(NULL)
47 if(other.fDateFormat != NULL) {
48 fDateFormat = (DateFormat*)other.fDateFormat->clone();
54 uprv_memcpy(fDates, other.fDates, sizeof(fDates[0])*fDatesLen);
56 //fCalendar = other.fCalendar->clone();
58 if(other.fTimeFormat != NULL) {
59 fTimeFormat = (DateFormat*)other.fTimeFormat->clone();
82 // don't support other time styles (e.g. relative styles), for now
104 UBool RelativeDateFormat::operator==(const Format& other) const {
105 if(DateFormat::operator==(other)) {
107 RelativeDateFormat* that = (RelativeDateFormat*)&other;
223 // redefined here because the other parse() function hides this function's
231 // redefined here because the other parse() function hides this function's