Home
last modified time | relevance | path

Searched refs:exponentSignAlwaysShown (Results 1 – 25 of 27) sorted by relevance

12

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DDecimalFormatProperties.java94 private transient boolean exponentSignAlwaysShown; field in DecimalFormatProperties
167 exponentSignAlwaysShown = false; in _clear()
214 exponentSignAlwaysShown = other.exponentSignAlwaysShown; in _copyFrom()
262 eq = eq && _equalsHelper(exponentSignAlwaysShown, other.exponentSignAlwaysShown); in _equals()
326 hashCode ^= _hashCodeHelper(exponentSignAlwaysShown); in _hashCode()
448 return exponentSignAlwaysShown; in getExponentSignAlwaysShown()
776 public DecimalFormatProperties setExponentSignAlwaysShown(boolean exponentSignAlwaysShown) { in setExponentSignAlwaysShown() argument
777 this.exponentSignAlwaysShown = exponentSignAlwaysShown; in setExponentSignAlwaysShown()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
DDecimalFormatProperties.java99 private transient boolean exponentSignAlwaysShown; field in DecimalFormatProperties
171 exponentSignAlwaysShown = false; in _clear()
217 exponentSignAlwaysShown = other.exponentSignAlwaysShown; in _copyFrom()
264 eq = eq && _equalsHelper(exponentSignAlwaysShown, other.exponentSignAlwaysShown); in _equals()
327 hashCode ^= _hashCodeHelper(exponentSignAlwaysShown); in _hashCode()
448 return exponentSignAlwaysShown; in getExponentSignAlwaysShown()
772 public DecimalFormatProperties setExponentSignAlwaysShown(boolean exponentSignAlwaysShown) { in setExponentSignAlwaysShown() argument
773 this.exponentSignAlwaysShown = exponentSignAlwaysShown; in setExponentSignAlwaysShown()
/third_party/icu/icu4c/source/i18n/
Dnumber_decimfmtprops.cpp42 exponentSignAlwaysShown = false; in clear()
91 eq = eq && exponentSignAlwaysShown == other.exponentSignAlwaysShown; in _equals()
Dnumber_decimfmtprops.h107 bool exponentSignAlwaysShown; member
Dnumber_patternstring.cpp618 properties.exponentSignAlwaysShown = positive.exponentHasPlusSign; in patternInfoToProperties()
630 properties.exponentSignAlwaysShown = false; in patternInfoToProperties()
735 bool exponentShowPlusSign = properties.exponentSignAlwaysShown; in propertiesToPatternString()
Ddecimfmt.cpp1157 return DecimalFormatProperties::getDefault().exponentSignAlwaysShown; in isExponentSignAlwaysShown()
1159 return fields->properties.exponentSignAlwaysShown; in isExponentSignAlwaysShown()
1164 if (UBOOL_TO_BOOL(expSignAlways) == fields->properties.exponentSignAlwaysShown) { return; } in setExponentSignAlwaysShown()
1165 fields->properties.exponentSignAlwaysShown = expSignAlways; in setExponentSignAlwaysShown()
Dnumber_mapper.cpp218 properties.exponentSignAlwaysShown ? UNUM_SIGN_ALWAYS : UNUM_SIGN_AUTO); in oldToNew()
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumber_decimfmtprops.cpp42 exponentSignAlwaysShown = false; in clear()
90 eq = eq && exponentSignAlwaysShown == other.exponentSignAlwaysShown; in _equals()
Dnumber_decimfmtprops.h107 bool exponentSignAlwaysShown; member
Dnumber_patternstring.cpp570 properties.exponentSignAlwaysShown = positive.exponentHasPlusSign; in patternInfoToProperties()
582 properties.exponentSignAlwaysShown = false; in patternInfoToProperties()
687 bool exponentShowPlusSign = properties.exponentSignAlwaysShown; in propertiesToPatternString()
Ddecimfmt.cpp1153 return DecimalFormatProperties::getDefault().exponentSignAlwaysShown; in isExponentSignAlwaysShown()
1155 return fields->properties.exponentSignAlwaysShown; in isExponentSignAlwaysShown()
1160 if (UBOOL_TO_BOOL(expSignAlways) == fields->properties.exponentSignAlwaysShown) { return; } in setExponentSignAlwaysShown()
1161 fields->properties.exponentSignAlwaysShown = expSignAlways; in setExponentSignAlwaysShown()
Dnumber_mapper.cpp217 properties.exponentSignAlwaysShown ? UNUM_SIGN_ALWAYS : UNUM_SIGN_AUTO); in oldToNew()
/third_party/node/deps/icu-small/source/i18n/
Dnumber_decimfmtprops.cpp42 exponentSignAlwaysShown = false; in clear()
91 eq = eq && exponentSignAlwaysShown == other.exponentSignAlwaysShown; in _equals()
Dnumber_decimfmtprops.h107 bool exponentSignAlwaysShown; member
Dnumber_patternstring.cpp618 properties.exponentSignAlwaysShown = positive.exponentHasPlusSign; in patternInfoToProperties()
630 properties.exponentSignAlwaysShown = false; in patternInfoToProperties()
735 bool exponentShowPlusSign = properties.exponentSignAlwaysShown; in propertiesToPatternString()
Ddecimfmt.cpp1157 return DecimalFormatProperties::getDefault().exponentSignAlwaysShown; in isExponentSignAlwaysShown()
1159 return fields->properties.exponentSignAlwaysShown; in isExponentSignAlwaysShown()
1164 if (UBOOL_TO_BOOL(expSignAlways) == fields->properties.exponentSignAlwaysShown) { return; } in setExponentSignAlwaysShown()
1165 fields->properties.exponentSignAlwaysShown = expSignAlways; in setExponentSignAlwaysShown()
Dnumber_mapper.cpp218 properties.exponentSignAlwaysShown ? UNUM_SIGN_ALWAYS : UNUM_SIGN_AUTO); in oldToNew()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DNumberFormatDataDrivenTest.java251 if (tuple.exponentSignAlwaysShown != null) {
252 fmt.setExponentSignAlwaysShown(tuple.exponentSignAlwaysShown != 0);
424 if (tuple.exponentSignAlwaysShown != null) {
531 if (tuple.exponentSignAlwaysShown != null) { in propertiesFromTuple()
532 properties.setExponentSignAlwaysShown(tuple.exponentSignAlwaysShown != 0); in propertiesFromTuple()
DDataDrivenNumberFormatTestData.java107 public Integer exponentSignAlwaysShown = null; field in DataDrivenNumberFormatTestData
359 exponentSignAlwaysShown = Integer.valueOf(value); in setExponentSignAlwaysShown()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatDataDrivenTest.java248 if (tuple.exponentSignAlwaysShown != null) {
249 fmt.setExponentSignAlwaysShown(tuple.exponentSignAlwaysShown != 0);
421 if (tuple.exponentSignAlwaysShown != null) {
528 if (tuple.exponentSignAlwaysShown != null) { in propertiesFromTuple()
529 properties.setExponentSignAlwaysShown(tuple.exponentSignAlwaysShown != 0); in propertiesFromTuple()
DDataDrivenNumberFormatTestData.java104 public Integer exponentSignAlwaysShown = null; field in DataDrivenNumberFormatTestData
356 exponentSignAlwaysShown = Integer.valueOf(value); in setExponentSignAlwaysShown()
/third_party/icu/icu4c/source/test/intltest/
Dnumberformattesttuple.h114 int32_t exponentSignAlwaysShown; variable
Dnumberformattesttuple.cpp321 FIELD_INIT(exponentSignAlwaysShown, &gIntOps),
Dnumfmtdatadriventest.cpp142 fmt.setExponentSignAlwaysShown(tuple.exponentSignAlwaysShown != 0); in adjustDecimalFormat()
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/
Dnumberformattestspecification.txt622 decimalSeparatorAlwaysShown exponentSignAlwaysShown minimumExponentDigits output breaks

12