Lines Matching refs:other
56 equals(const CurrencyAffixInfo &other) const {
57 return (fSymbol == other.fSymbol)
58 && (fISO == other.fISO)
59 && (fLong.equals(other.fLong))
60 && (fIsDefault == other.fIsDefault);
207 * Appends other to this instance mutating this instance in place.
208 * @param other The pattern appended to the end of this one.
211 AffixPattern &append(const AffixPattern &other);
244 * any other character. If an apostrophe prefixes a non special
272 UBool equals(const AffixPattern &other) const {
273 return (tokens == other.tokens)
274 && (literals == other.literals)
275 && (hasCurrencyToken == other.hasCurrencyToken)
276 && (hasPercentToken == other.hasPercentToken)
277 && (hasPermillToken == other.hasPermillToken)
278 && (char32Count == other.char32Count);
325 * are no more tokens. Calling the other methods after nextToken()
337 * other token types results in undefined behavior.
383 UBool equals(const AffixPatternParser &other) const {
384 return (fPercent == other.fPercent)
385 && (fPermill == other.fPermill)
386 && (fNegative == other.fNegative)
387 && (fPositive == other.fPositive);