Lines Matching full:eq
81 bool eq = true; in _equals() local
84 eq = eq && compactStyle == other.compactStyle; in _equals()
85 eq = eq && currency == other.currency; in _equals()
86 eq = eq && currencyPluralInfo.fPtr.getAlias() == other.currencyPluralInfo.fPtr.getAlias(); in _equals()
87 eq = eq && currencyUsage == other.currencyUsage; in _equals()
88 eq = eq && decimalSeparatorAlwaysShown == other.decimalSeparatorAlwaysShown; in _equals()
89 eq = eq && exponentSignAlwaysShown == other.exponentSignAlwaysShown; in _equals()
90 eq = eq && formatFailIfMoreThanMaxDigits == other.formatFailIfMoreThanMaxDigits; in _equals()
91 eq = eq && formatWidth == other.formatWidth; in _equals()
92 eq = eq && magnitudeMultiplier == other.magnitudeMultiplier; in _equals()
93 eq = eq && maximumSignificantDigits == other.maximumSignificantDigits; in _equals()
94 eq = eq && minimumExponentDigits == other.minimumExponentDigits; in _equals()
95 eq = eq && minimumGroupingDigits == other.minimumGroupingDigits; in _equals()
96 eq = eq && minimumSignificantDigits == other.minimumSignificantDigits; in _equals()
97 eq = eq && multiplier == other.multiplier; in _equals()
98 eq = eq && multiplierScale == other.multiplierScale; in _equals()
99 eq = eq && negativePrefix == other.negativePrefix; in _equals()
100 eq = eq && negativeSuffix == other.negativeSuffix; in _equals()
101 eq = eq && padPosition == other.padPosition; in _equals()
102 eq = eq && padString == other.padString; in _equals()
103 eq = eq && positivePrefix == other.positivePrefix; in _equals()
104 eq = eq && positiveSuffix == other.positiveSuffix; in _equals()
105 eq = eq && roundingIncrement == other.roundingIncrement; in _equals()
106 eq = eq && roundingMode == other.roundingMode; in _equals()
107 eq = eq && secondaryGroupingSize == other.secondaryGroupingSize; in _equals()
108 eq = eq && signAlwaysShown == other.signAlwaysShown; in _equals()
111 return eq; in _equals()
116 eq = eq && groupingSize == other.groupingSize; in _equals()
117 eq = eq && groupingUsed == other.groupingUsed; in _equals()
118 eq = eq && minimumFractionDigits == other.minimumFractionDigits; in _equals()
119 eq = eq && maximumFractionDigits == other.maximumFractionDigits; in _equals()
120 eq = eq && maximumIntegerDigits == other.maximumIntegerDigits; in _equals()
121 eq = eq && minimumIntegerDigits == other.minimumIntegerDigits; in _equals()
122 eq = eq && negativePrefixPattern == other.negativePrefixPattern; in _equals()
123 eq = eq && negativeSuffixPattern == other.negativeSuffixPattern; in _equals()
124 eq = eq && positivePrefixPattern == other.positivePrefixPattern; in _equals()
125 eq = eq && positiveSuffixPattern == other.positiveSuffixPattern; in _equals()
128 eq = eq && decimalPatternMatchRequired == other.decimalPatternMatchRequired; in _equals()
129 eq = eq && parseCaseSensitive == other.parseCaseSensitive; in _equals()
130 eq = eq && parseIntegerOnly == other.parseIntegerOnly; in _equals()
131 eq = eq && parseMode == other.parseMode; in _equals()
132 eq = eq && parseNoExponent == other.parseNoExponent; in _equals()
133 eq = eq && parseToBigDecimal == other.parseToBigDecimal; in _equals()
134 eq = eq && parseAllInput == other.parseAllInput; in _equals()
136 return eq; in _equals()