/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | DecimalFormatProperties.java | 116 private transient boolean parseIntegerOnly; field in DecimalFormatProperties 188 parseIntegerOnly = false; in _clear() 234 parseIntegerOnly = other.parseIntegerOnly; in _copyFrom() 281 eq = eq && _equalsHelper(parseIntegerOnly, other.parseIntegerOnly); in _equals() 344 hashCode ^= _hashCodeHelper(parseIntegerOnly); in _hashCode() 531 return parseIntegerOnly; in getParseIntegerOnly() 1144 public DecimalFormatProperties setParseIntegerOnly(boolean parseIntegerOnly) { in setParseIntegerOnly() argument 1145 this.parseIntegerOnly = parseIntegerOnly; in setParseIntegerOnly()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
D | DecimalFormatProperties.java | 121 private transient boolean parseIntegerOnly; field in DecimalFormatProperties 193 parseIntegerOnly = false; in _clear() 239 parseIntegerOnly = other.parseIntegerOnly; in _copyFrom() 286 eq = eq && _equalsHelper(parseIntegerOnly, other.parseIntegerOnly); in _equals() 349 hashCode ^= _hashCodeHelper(parseIntegerOnly); in _hashCode() 536 return parseIntegerOnly; in getParseIntegerOnly() 1149 public DecimalFormatProperties setParseIntegerOnly(boolean parseIntegerOnly) { in setParseIntegerOnly() argument 1150 this.parseIntegerOnly = parseIntegerOnly; in setParseIntegerOnly()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | number_decimfmtprops.cpp | 65 parseIntegerOnly = false; in clear() 131 eq = eq && parseIntegerOnly == other.parseIntegerOnly; in _equals()
|
D | number_decimfmtprops.h | 130 bool parseIntegerOnly; member
|
D | numparse_impl.cpp | 97 if (properties.parseIntegerOnly) { in createParserFromProperties()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | number_decimfmtprops.cpp | 66 parseIntegerOnly = false; in clear() 133 eq = eq && parseIntegerOnly == other.parseIntegerOnly; in _equals()
|
D | number_decimfmtprops.h | 131 bool parseIntegerOnly; member
|
D | numparse_impl.cpp | 97 if (properties.parseIntegerOnly) { in createParserFromProperties()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | number_decimfmtprops.cpp | 64 parseIntegerOnly = false; in clear() 130 eq = eq && parseIntegerOnly == other.parseIntegerOnly; in _equals()
|
D | number_decimfmtprops.h | 123 bool parseIntegerOnly; member
|
D | numparse_impl.cpp | 106 if (properties.parseIntegerOnly) { in createParserFromProperties()
|
/third_party/icu/icu4c/source/i18n/ |
D | number_decimfmtprops.cpp | 65 parseIntegerOnly = false; in clear() 131 eq = eq && parseIntegerOnly == other.parseIntegerOnly; in _equals()
|
D | number_decimfmtprops.h | 130 bool parseIntegerOnly; member
|
D | numparse_impl.cpp | 97 if (properties.parseIntegerOnly) { in createParserFromProperties()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatDataDrivenTest.java | 277 if (tuple.parseIntegerOnly != null) { 278 fmt.setParseIntegerOnly(tuple.parseIntegerOnly != 0); 450 if (tuple.parseIntegerOnly != null) { 451 fmt.setParseIntegerOnly(tuple.parseIntegerOnly != 0); 561 if (tuple.parseIntegerOnly != null) { in propertiesFromTuple() 562 properties.setParseIntegerOnly(tuple.parseIntegerOnly != 0); in propertiesFromTuple()
|
D | DataDrivenNumberFormatTestData.java | 119 public Integer parseIntegerOnly = null; field in DataDrivenNumberFormatTestData 416 parseIntegerOnly = Integer.valueOf(value); in setParseIntegerOnly()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | NumberFormatDataDrivenTest.java | 280 if (tuple.parseIntegerOnly != null) { 281 fmt.setParseIntegerOnly(tuple.parseIntegerOnly != 0); 453 if (tuple.parseIntegerOnly != null) { 454 fmt.setParseIntegerOnly(tuple.parseIntegerOnly != 0); 564 if (tuple.parseIntegerOnly != null) { in propertiesFromTuple() 565 properties.setParseIntegerOnly(tuple.parseIntegerOnly != 0); in propertiesFromTuple()
|
D | DataDrivenNumberFormatTestData.java | 122 public Integer parseIntegerOnly = null; field in DataDrivenNumberFormatTestData 419 parseIntegerOnly = Integer.valueOf(value); in setParseIntegerOnly()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | NumberFormat.java | 475 return parseIntegerOnly; in isParseIntegerOnly() 490 parseIntegerOnly = value; in setParseIntegerOnly() 1091 && parseIntegerOnly == other.parseIntegerOnly in equals() 1706 private boolean parseIntegerOnly = false; field in NumberFormat
|
D | DecimalFormat.java | 2079 public synchronized void setParseIntegerOnly(boolean parseIntegerOnly) { in setParseIntegerOnly() argument 2080 properties.setParseIntegerOnly(parseIntegerOnly); in setParseIntegerOnly()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | NumberFormat.java | 505 return parseIntegerOnly; in isParseIntegerOnly() 521 parseIntegerOnly = value; in setParseIntegerOnly() 1164 && parseIntegerOnly == other.parseIntegerOnly in equals() 1794 private boolean parseIntegerOnly = false; field in NumberFormat
|
D | DecimalFormat.java | 2283 public synchronized void setParseIntegerOnly(boolean parseIntegerOnly) { in setParseIntegerOnly() argument 2284 properties.setParseIntegerOnly(parseIntegerOnly); in setParseIntegerOnly()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | numberformattesttuple.h | 129 int32_t parseIntegerOnly; variable
|
D | numberformattesttuple.cpp | 336 FIELD_INIT(parseIntegerOnly, &gIntOps),
|
D | numfmtdatadriventest.cpp | 175 fmt.setParseIntegerOnly(tuple.parseIntegerOnly != 0); in adjustDecimalFormat()
|