Home | History | Annotate | Download | only in i18n

Lines Matching refs:other

37 Measure::Measure(const Measure& other) :
38 UObject(other), unit(0) {
39 *this = other;
42 Measure& Measure::operator=(const Measure& other) {
43 if (this != &other) {
45 number = other.number;
46 unit = (MeasureUnit*) other.unit->clone();
59 UBool Measure::operator==(const UObject& other) const {
60 if (this == &other) { // Same object, equal
63 if (typeid(*this) != typeid(other)) { // Different types, not equal
66 const Measure &m = static_cast<const Measure&>(other);