Lines Matching refs:OTHER
79 NumericDateFormatters(const NumericDateFormatters &other);
80 NumericDateFormatters &operator=(const NumericDateFormatters &other);
151 MeasureFormatCacheData(const MeasureFormatCacheData &other);
152 MeasureFormatCacheData &operator=(const MeasureFormatCacheData &other);
259 * unitsShort/duration/hour contains other{"{0} hrs"}.
272 // other{"{0} hrs"}
293 setFormatterIfAbsent(StandardPlural::OTHER, value, 0, errorCode);
631 MeasureFormat::MeasureFormat(const MeasureFormat &other) :
632 Format(other),
633 cache(other.cache),
634 numberFormat(other.numberFormat),
635 pluralRules(other.pluralRules),
636 width(other.width),
641 if (other.listFormatter != NULL) {
642 listFormatter = new ListFormatter(*other.listFormatter);
646 MeasureFormat &MeasureFormat::operator=(const MeasureFormat &other) {
647 if (this == &other) {
650 Format::operator=(other);
651 SharedObject::copyPtr(other.cache, cache);
652 SharedObject::copyPtr(other.numberFormat, numberFormat);
653 SharedObject::copyPtr(other.pluralRules, pluralRules);
654 width = other.width;
656 if (other.listFormatter != NULL) {
657 listFormatter = new ListFormatter(*other.listFormatter);
685 UBool MeasureFormat::operator==(const Format &other) const {
686 if (this == &other) { // Same object, equal
689 if (!Format::operator==(other)) {
692 const MeasureFormat &rhs = static_cast<const MeasureFormat &>(other);
1126 if (index != StandardPlural::OTHER) {
1132 return getFormatter(unit, width, StandardPlural::OTHER, errorCode);