Searched defs:IntegerWidth (Results 1 - 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/number/
H A DIntegerWidth.java12 * To create an IntegerWidth, use one of the factory methods.
18 public class IntegerWidth { class
20 /* package-private */ static final IntegerWidth DEFAULT = new IntegerWidth(1, -1);
25 private IntegerWidth(int minInt, int maxInt) { method in class:IntegerWidth
38 * @return An IntegerWidth for chaining or passing to the NumberFormatter integerWidth() setter.
42 public static IntegerWidth zeroFillTo(int minInt) {
46 return new IntegerWidth(minInt, -1);
60 * @return An IntegerWidth for passing to the NumberFormatter integerWidth() setter.
64 public IntegerWidth truncateA
[all...]
/external/icu/icu4c/source/i18n/
H A Dnumber_integerwidth.cpp16 IntegerWidth::IntegerWidth(int8_t minInt, int8_t maxInt) { function in class:IntegerWidth
21 IntegerWidth IntegerWidth::zeroFillTo(int32_t minInt) {
29 IntegerWidth IntegerWidth::truncateAt(int32_t maxInt) {
38 void IntegerWidth::apply(impl::DecimalQuantity &quantity, UErrorCode &status) const {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DIntegerWidth.java11 * To create an IntegerWidth, use one of the factory methods.
17 public class IntegerWidth { class
19 /* package-private */ static final IntegerWidth DEFAULT = new IntegerWidth(1, -1);
24 private IntegerWidth(int minInt, int maxInt) { method in class:IntegerWidth
37 * @return An IntegerWidth for chaining or passing to the NumberFormatter integerWidth() setter.
42 public static IntegerWidth zeroFillTo(int minInt) {
46 return new IntegerWidth(minInt, -1);
60 * @return An IntegerWidth for passing to the NumberFormatter integerWidth() setter.
65 public IntegerWidth truncateA
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dnumberformatter.h287 class IntegerWidth;
1056 * To create an IntegerWidth, use one of the factory methods.
1061 class U_I18N_API IntegerWidth : public UMemory { class in namespace:number
1071 * @return An IntegerWidth for chaining or passing to the NumberFormatter integerWidth() setter.
1075 static IntegerWidth zeroFillTo(int32_t minInt);
1084 * @return An IntegerWidth for passing to the NumberFormatter integerWidth() setter.
1088 IntegerWidth truncateAt(int32_t maxInt);
1100 IntegerWidth(int8_t minInt, int8_t maxInt);
1102 IntegerWidth(UErrorCode errorCode) { // NOLINT function in class:number::IntegerWidth
1107 IntegerWidth() { // NOLIN function in class:number::IntegerWidth
[all...]

Completed in 125 milliseconds