Home | History | Annotate | Download | only in i18n

Lines Matching refs:other

33 Measure::Measure(const Measure& other) :
34 UObject(other), unit(0) {
35 *this = other;
38 Measure& Measure::operator=(const Measure& other) {
39 if (this != &other) {
41 number = other.number;
42 unit = (MeasureUnit*) other.unit->clone();
51 UBool Measure::operator==(const UObject& other) const {
52 const Measure* m = (const Measure*) &other;
53 return typeid(*this) == typeid(other) &&