HomeSort by relevance Sort by last modified time
    Searched refs:integerWidth (Results 1 - 25 of 25) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
MacroProps.java 9 import android.icu.number.IntegerWidth;
31 public IntegerWidth integerWidth;
63 if (integerWidth == null)
64 integerWidth = fallback.integerWidth;
92 integerWidth,
119 && Objects.equals(integerWidth, other.integerWidth)
MicroProps.java 6 import android.icu.number.IntegerWidth;
21 public IntegerWidth integerWidth;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
MacroProps.java 8 import com.ibm.icu.number.IntegerWidth;
27 public IntegerWidth integerWidth;
59 if (integerWidth == null)
60 integerWidth = fallback.integerWidth;
88 integerWidth,
115 && Objects.equals(integerWidth, other.integerWidth)
MicroProps.java 5 import com.ibm.icu.number.IntegerWidth;
17 public IntegerWidth integerWidth;
  /external/icu/icu4c/source/i18n/
number_microprops.h 31 IntegerWidth integerWidth;
number_formatimpl.cpp 115 microsOut.integerWidth.apply(inValue, status);
128 fMicros.integerWidth.apply(inValue, status);
310 if (!macros.integerWidth.isBogus()) {
311 fMicros.integerWidth = macros.integerWidth;
313 fMicros.integerWidth = IntegerWidth::standard();
number_skeletons.h 288 static bool integerWidth(const MacroProps& macros, UnicodeString& sb, UErrorCode& status);
314 bool integerWidth = false;
number_skeletons.cpp 656 CHECK_NULL(seen, integerWidth, status);
774 if (GeneratorHelpers::integerWidth(macros, sb, status)) {
    [all...]
number_mapper.cpp 164 macros.integerWidth = IntegerWidth(
208 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt);
212 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt);
number_fluent.cpp 170 Derived NumberFormatterSettings<Derived>::integerWidth(const IntegerWidth& style) const& {
172 copy.fMacros.integerWidth = style;
177 Derived NumberFormatterSettings<Derived>::integerWidth(const IntegerWidth& style)&& {
179 move.fMacros.integerWidth = style;
smpdtfmt.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberFormatterImpl.java 102 if (micros.integerWidth.maxInt == -1) {
103 inValue.setIntegerLength(micros.integerWidth.minInt, Integer.MAX_VALUE);
105 inValue.setIntegerLength(micros.integerWidth.minInt, micros.integerWidth.maxInt);
114 if (micros.integerWidth.maxInt == -1) {
115 inValue.setIntegerLength(micros.integerWidth.minInt, Integer.MAX_VALUE);
117 inValue.setIntegerLength(micros.integerWidth.minInt, micros.integerWidth.maxInt);
290 if (macros.integerWidth != null) {
291 micros.integerWidth = macros.integerWidth
    [all...]
NumberFormatterSettings.java 287 * Pass this method the return value of {@link IntegerWidth#zeroFillTo(int)}. For example:
290 * NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(2))
298 * @see IntegerWidth
301 public T integerWidth(IntegerWidth style) {
607 if (macros.integerWidth == null) {
608 macros.integerWidth = (IntegerWidth) current.value;
NumberPropertyMapper.java 206 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt);
247 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt);
251 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt);
NumberSkeletonImpl.java 729 checkNull(macros.integerWidth, segment);
838 if (macros.integerWidth != null && GeneratorHelpers.integerWidth(macros, sb)) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberFormatterImpl.java 101 if (micros.integerWidth.maxInt == -1) {
102 inValue.setIntegerLength(micros.integerWidth.minInt, Integer.MAX_VALUE);
104 inValue.setIntegerLength(micros.integerWidth.minInt, micros.integerWidth.maxInt);
113 if (micros.integerWidth.maxInt == -1) {
114 inValue.setIntegerLength(micros.integerWidth.minInt, Integer.MAX_VALUE);
116 inValue.setIntegerLength(micros.integerWidth.minInt, micros.integerWidth.maxInt);
289 if (macros.integerWidth != null) {
290 micros.integerWidth = macros.integerWidth
    [all...]
NumberFormatterSettings.java 292 * Pass this method the return value of {@link IntegerWidth#zeroFillTo(int)}. For example:
295 * NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(2))
303 * @see IntegerWidth
307 public T integerWidth(IntegerWidth style) {
620 if (macros.integerWidth == null) {
621 macros.integerWidth = (IntegerWidth) current.value;
NumberSkeletonImpl.java 728 checkNull(macros.integerWidth, segment);
837 if (macros.integerWidth != null && GeneratorHelpers.integerWidth(macros, sb)) {
    [all...]
NumberPropertyMapper.java 205 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt);
246 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt);
250 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
NumberFormatterApiTest.java 38 import android.icu.number.IntegerWidth;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
NumberFormatterApiTest.java 37 import com.ibm.icu.number.IntegerWidth;
926 NumberFormatter.with().precision(Precision.fixedSignificantDigits(1)).integerWidth(IntegerWidth.zeroFillTo(0)),
    [all...]
  /external/icu/icu4c/source/test/intltest/
numbertest_api.cpp 78 TESTCASE_AUTO(integerWidth);
942 .integerWidth(IntegerWidth::zeroFillTo(3)),
951 .integerWidth(IntegerWidth::zeroFillTo(0)),
    [all...]
numbertest.h 64 void integerWidth();
  /external/icu/icu4c/source/i18n/unicode/
numberformatter.h 107 class IntegerWidth;
949 * To create an IntegerWidth, use one of the factory methods.
    [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 225 milliseconds