Home
last modified time | relevance | path

Searched refs:exportedProperties (Results 1 – 11 of 11) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/number/
DNumberPropertyMapper.java50 DecimalFormatProperties exportedProperties) { in create() argument
51 MacroProps macros = oldToNew(properties, symbols, exportedProperties); in create()
83 DecimalFormatProperties exportedProperties) { in oldToNew() argument
319 if (exportedProperties != null) { in oldToNew()
321 exportedProperties.setCurrency(currency); in oldToNew()
322 exportedProperties.setMathContext(mathContext); in oldToNew()
323 exportedProperties.setRoundingMode(mathContext.getRoundingMode()); in oldToNew()
324 exportedProperties.setMinimumIntegerDigits(minInt); in oldToNew()
325 exportedProperties.setMaximumIntegerDigits(maxInt == -1 ? Integer.MAX_VALUE : maxInt); in oldToNew()
350 exportedProperties.setMinimumFractionDigits(minFrac_); in oldToNew()
[all …]
DNumberFormatter.java459 DecimalFormatProperties exportedProperties) { in fromDecimalFormat() argument
460 return NumberPropertyMapper.create(properties, symbols, exportedProperties); in fromDecimalFormat()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DNumberPropertyMapper.java49 DecimalFormatProperties exportedProperties) { in create() argument
50 MacroProps macros = oldToNew(properties, symbols, exportedProperties); in create()
82 DecimalFormatProperties exportedProperties) { in oldToNew() argument
318 if (exportedProperties != null) { in oldToNew()
320 exportedProperties.setCurrency(currency); in oldToNew()
321 exportedProperties.setMathContext(mathContext); in oldToNew()
322 exportedProperties.setRoundingMode(mathContext.getRoundingMode()); in oldToNew()
323 exportedProperties.setMinimumIntegerDigits(minInt); in oldToNew()
324 exportedProperties.setMaximumIntegerDigits(maxInt == -1 ? Integer.MAX_VALUE : maxInt); in oldToNew()
349 exportedProperties.setMinimumFractionDigits(minFrac_); in oldToNew()
[all …]
DNumberFormatter.java481 DecimalFormatProperties exportedProperties) { in fromDecimalFormat() argument
482 return NumberPropertyMapper.create(properties, symbols, exportedProperties); in fromDecimalFormat()
/external/icu/icu4c/source/i18n/
Dnumber_mapper.cpp33 DecimalFormatProperties& exportedProperties, in create() argument
37 properties, symbols, warehouse, &exportedProperties, status)); in create()
43 DecimalFormatProperties* exportedProperties, in oldToNew() argument
277 if (exportedProperties != nullptr) { in oldToNew()
279 exportedProperties->currency = currency; in oldToNew()
280 exportedProperties->roundingMode = roundingMode; in oldToNew()
281 exportedProperties->minimumIntegerDigits = minInt; in oldToNew()
282 exportedProperties->maximumIntegerDigits = maxInt == -1 ? INT32_MAX : maxInt; in oldToNew()
307 exportedProperties->minimumFractionDigits = minFrac_; in oldToNew()
308 exportedProperties->maximumFractionDigits = maxFrac_; in oldToNew()
[all …]
Ddecimfmt.cpp109 fields->exportedProperties.adoptInsteadAndCheckErrorCode(new DecimalFormatProperties(), status); in DecimalFormat()
396 fields->exportedProperties.adoptInstead(new DecimalFormatProperties()); in DecimalFormat()
397 …if (fields->properties == nullptr || fields->symbols == nullptr || fields->exportedProperties == n… in DecimalFormat()
405 fields->exportedProperties->clear(); in operator =()
736 return fields->exportedProperties->roundingIncrement; in getRoundingIncrement()
747 return static_cast<ERoundingMode>(fields->exportedProperties->roundingMode.getNoError()); in getRoundingMode()
943 tprops.minimumFractionDigits = fields->exportedProperties->minimumFractionDigits; in toPattern()
944 tprops.maximumFractionDigits = fields->exportedProperties->maximumFractionDigits; in toPattern()
945 tprops.roundingIncrement = fields->exportedProperties->roundingIncrement; in toPattern()
1027 return fields->exportedProperties->minimumSignificantDigits; in getMinimumSignificantDigits()
[all …]
Dnumber_mapper.h150 LocalPointer<DecimalFormatProperties> exportedProperties; member
178 DecimalFormatProperties& exportedProperties,
197 DecimalFormatProperties* exportedProperties, UErrorCode& status);
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDecimalFormat.java283 transient volatile DecimalFormatProperties exportedProperties; field in DecimalFormat
313 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
341 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
369 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
405 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
491 other.exportedProperties = new DecimalFormatProperties(); in clone()
544 exportedProperties = new DecimalFormatProperties(); in readObject()
682 exportedProperties = new DecimalFormatProperties(); in readObject()
1109 return exportedProperties.getRoundingIncrement(); in getRoundingIncrement()
1178 RoundingMode mode = exportedProperties.getRoundingMode(); in getRoundingMode()
[all …]
DCompactDecimalFormat.java104 exportedProperties = new DecimalFormatProperties(); in CompactDecimalFormat()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat.java289 transient volatile DecimalFormatProperties exportedProperties; field in DecimalFormat
320 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
349 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
378 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
415 exportedProperties = new DecimalFormatProperties(); in DecimalFormat()
504 other.exportedProperties = new DecimalFormatProperties(); in clone()
557 exportedProperties = new DecimalFormatProperties(); in readObject()
695 exportedProperties = new DecimalFormatProperties(); in readObject()
1166 return exportedProperties.getRoundingIncrement(); in getRoundingIncrement()
1243 RoundingMode mode = exportedProperties.getRoundingMode(); in getRoundingMode()
[all …]
DCompactDecimalFormat.java124 exportedProperties = new DecimalFormatProperties(); in CompactDecimalFormat()