Lines Matching refs:other
49 SelectFormat::SelectFormat(const SelectFormat& other) : Format(other),
50 msgPattern(other.msgPattern) {
130 UnicodeString other(FALSE, SELECT_KEYWORD_OTHER, 5);
144 } else if(msgStart==0 && pattern.partSubstringMatches(part, other)) {
158 SelectFormat::operator=(const SelectFormat& other) {
159 if (this != &other) {
160 msgPattern = other.msgPattern;
166 SelectFormat::operator==(const Format& other) const {
167 if (this == &other) {
170 if (!Format::operator==(other)) {
173 const SelectFormat& o = (const SelectFormat&)other;
178 SelectFormat::operator!=(const Format& other) const {
179 return !operator==(other);