Lines Matching refs:OTHER
77 NumericDateFormatters(const NumericDateFormatters &other);
78 NumericDateFormatters &operator=(const NumericDateFormatters &other);
148 MeasureFormatCacheData(const MeasureFormatCacheData &other);
149 MeasureFormatCacheData &operator=(const MeasureFormatCacheData &other);
219 * unitsShort/duration/hour contains other{"{0} hrs"}.
250 // other{"{0} hrs"}
599 MeasureFormat::MeasureFormat(const MeasureFormat &other) :
600 Format(other),
601 cache(other.cache),
602 numberFormat(other.numberFormat),
603 pluralRules(other.pluralRules),
604 width(other.width),
609 listFormatter = new ListFormatter(*other.listFormatter);
612 MeasureFormat &MeasureFormat::operator=(const MeasureFormat &other) {
613 if (this == &other) {
616 Format::operator=(other);
617 SharedObject::copyPtr(other.cache, cache);
618 SharedObject::copyPtr(other.numberFormat, numberFormat);
619 SharedObject::copyPtr(other.pluralRules, pluralRules);
620 width = other.width;
622 listFormatter = new ListFormatter(*other.listFormatter);
647 UBool MeasureFormat::operator==(const Format &other) const {
648 if (this == &other) { // Same object, equal
651 if (!Format::operator==(other)) {
654 const MeasureFormat &rhs = static_cast<const MeasureFormat &>(other);
1070 if (index != StandardPlural::OTHER) {
1076 return getFormatter(unit, width, StandardPlural::OTHER, errorCode);