/external/icu/android_icu4j/src/main/java/android/icu/number/ |
D | IntegerWidth.java | 18 public class IntegerWidth { class 20 /* package-private */ static final IntegerWidth DEFAULT = new IntegerWidth(1, -1); 25 private IntegerWidth(int minInt, int maxInt) { in IntegerWidth() method in IntegerWidth 43 public static IntegerWidth zeroFillTo(int minInt) { in zeroFillTo() 47 return new IntegerWidth(minInt, -1); in zeroFillTo() 67 public IntegerWidth truncateAt(int maxInt) { in truncateAt() 71 return new IntegerWidth(minInt, maxInt); in truncateAt() 75 return new IntegerWidth(minInt, -1); in truncateAt()
|
D | NumberPropertyMapper.java | 206 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in oldToNew() 247 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in oldToNew() 251 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in oldToNew()
|
D | NumberFormatterSettings.java | 301 public T integerWidth(IntegerWidth style) { in integerWidth() 608 macros.integerWidth = (IntegerWidth) current.value; in resolve()
|
D | NumberSkeletonImpl.java | 1190 macros.integerWidth = IntegerWidth.zeroFillTo(minInt); in parseIntegerWidthOption() 1192 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in parseIntegerWidthOption() 1380 if (macros.integerWidth.equals(IntegerWidth.DEFAULT)) { in integerWidth()
|
D | NumberFormatterImpl.java | 293 micros.integerWidth = IntegerWidth.DEFAULT; in macrosToMicroGenerator()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
D | IntegerWidth.java | 17 public class IntegerWidth { class 19 /* package-private */ static final IntegerWidth DEFAULT = new IntegerWidth(1, -1); 24 private IntegerWidth(int minInt, int maxInt) { in IntegerWidth() method in IntegerWidth 43 public static IntegerWidth zeroFillTo(int minInt) { in zeroFillTo() 47 return new IntegerWidth(minInt, -1); in zeroFillTo() 68 public IntegerWidth truncateAt(int maxInt) { in truncateAt() 72 return new IntegerWidth(minInt, maxInt); in truncateAt() 76 return new IntegerWidth(minInt, -1); in truncateAt()
|
D | NumberPropertyMapper.java | 205 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in oldToNew() 246 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in oldToNew() 250 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in oldToNew()
|
D | NumberFormatterSettings.java | 307 public T integerWidth(IntegerWidth style) { in integerWidth() 621 macros.integerWidth = (IntegerWidth) current.value; in resolve()
|
D | NumberSkeletonImpl.java | 1189 macros.integerWidth = IntegerWidth.zeroFillTo(minInt); in parseIntegerWidthOption() 1191 macros.integerWidth = IntegerWidth.zeroFillTo(minInt).truncateAt(maxInt); in parseIntegerWidthOption() 1379 if (macros.integerWidth.equals(IntegerWidth.DEFAULT)) { in integerWidth()
|
/external/icu/icu4c/source/i18n/ |
D | number_integerwidth.cpp | 16 IntegerWidth::IntegerWidth(digits_t minInt, digits_t maxInt, bool formatFailIfMoreThanMaxDigits) { in IntegerWidth() function in IntegerWidth 22 IntegerWidth IntegerWidth::zeroFillTo(int32_t minInt) { in zeroFillTo() 30 IntegerWidth IntegerWidth::truncateAt(int32_t maxInt) { in truncateAt() 42 void IntegerWidth::apply(impl::DecimalQuantity& quantity, UErrorCode& status) const { in apply() 57 bool IntegerWidth::operator==(const IntegerWidth& other) const { in operator ==()
|
D | number_microprops.h | 31 IntegerWidth integerWidth;
|
D | number_mapper.cpp | 164 macros.integerWidth = IntegerWidth( in oldToNew() 208 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt); in oldToNew() 212 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt); in oldToNew()
|
D | number_fluent.cpp | 170 Derived NumberFormatterSettings<Derived>::integerWidth(const IntegerWidth& style) const& { in integerWidth() 177 Derived NumberFormatterSettings<Derived>::integerWidth(const IntegerWidth& style)&& { in integerWidth()
|
D | number_skeletons.cpp | 1212 macros.integerWidth = IntegerWidth::zeroFillTo(minInt); in parseIntegerWidthOption() 1214 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt); in parseIntegerWidthOption() 1440 macros.integerWidth == IntegerWidth::standard()) { in integerWidth()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | numberformatter.h | 107 class IntegerWidth; variable 954 class U_I18N_API IntegerWidth : public UMemory { 967 static IntegerWidth zeroFillTo(int32_t minInt); 980 IntegerWidth truncateAt(int32_t maxInt); 993 IntegerWidth(impl::digits_t minInt, impl::digits_t maxInt, bool formatFailIfMoreThanMaxDigits); 995 IntegerWidth(UErrorCode errorCode) { // NOLINT in IntegerWidth() function 1000 IntegerWidth() { // NOLINT in IntegerWidth() function 1005 static IntegerWidth standard() { in standard() 1006 return IntegerWidth::zeroFillTo(1); in standard() 1023 bool operator==(const IntegerWidth& other) const; [all …]
|
/external/mesa3d/src/gallium/targets/haiku-softpipe/ |
D | SoftwareRenderer.cpp | 73 fWidth = (GLint)b.IntegerWidth(); in SoftwareRenderer() 171 != fBitmap->Bounds().IntegerWidth()) { in SwapBuffers() 177 uint8 bytesPerPixel = bytesPerRow / fBitmap->Bounds().IntegerWidth(); in SwapBuffers() 247 memcpy(d, s, dr.IntegerWidth() * 4); in CopyPixelsOut() 289 memcpy(d, s, dr.IntegerWidth() * 4); in CopyPixelsIn() 355 fBitmap->Bounds().IntegerWidth(), fBitmap->Bounds().IntegerHeight()); in _AllocateBitmap()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | MicroProps.java | 6 import android.icu.number.IntegerWidth; 21 public IntegerWidth integerWidth;
|
D | MacroProps.java | 9 import android.icu.number.IntegerWidth; 31 public IntegerWidth integerWidth;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | MicroProps.java | 5 import com.ibm.icu.number.IntegerWidth; 17 public IntegerWidth integerWidth;
|
D | MacroProps.java | 8 import com.ibm.icu.number.IntegerWidth; 27 public IntegerWidth integerWidth;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 38 import android.icu.number.IntegerWidth; 929 …ter.with().precision(Precision.fixedSignificantDigits(1)).integerWidth(IntegerWidth.zeroFillTo(0)), in roundingFigures() 937 …ter.with().precision(Precision.fixedSignificantDigits(1)).integerWidth(IntegerWidth.zeroFillTo(3)), in roundingFigures() 1478 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(1)), in integerWidth() 1493 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(0)), in integerWidth() 1508 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(3)), in integerWidth() 1523 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(1).truncateAt(3)), in integerWidth() 1538 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(2).truncateAt(2)), in integerWidth() 2231 IntegerWidth.class.getDeclaredMethod("zeroFillTo", Integer.TYPE), in validRanges() 2232 IntegerWidth.class.getDeclaredMethod("truncateAt", Integer.TYPE), }; in validRanges() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
D | NumberFormatterApiTest.java | 37 import com.ibm.icu.number.IntegerWidth; 926 …ter.with().precision(Precision.fixedSignificantDigits(1)).integerWidth(IntegerWidth.zeroFillTo(0)), in roundingFigures() 934 …ter.with().precision(Precision.fixedSignificantDigits(1)).integerWidth(IntegerWidth.zeroFillTo(3)), in roundingFigures() 1475 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(1)), in integerWidth() 1490 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(0)), in integerWidth() 1505 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(3)), in integerWidth() 1520 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(1).truncateAt(3)), in integerWidth() 1535 NumberFormatter.with().integerWidth(IntegerWidth.zeroFillTo(2).truncateAt(2)), in integerWidth() 2228 IntegerWidth.class.getDeclaredMethod("zeroFillTo", Integer.TYPE), in validRanges() 2229 IntegerWidth.class.getDeclaredMethod("truncateAt", Integer.TYPE), }; in validRanges() [all …]
|
/external/mesa3d/src/gallium/state_trackers/hgl/ |
D | bitmap_wrapper.cpp | 58 uint32 w = bb->Bounds().IntegerWidth() + 1; in get_bitmap_size()
|
/external/icu/icu4c/source/test/intltest/ |
D | numbertest_api.cpp | 942 .integerWidth(IntegerWidth::zeroFillTo(3)), in roundingFigures() 951 .integerWidth(IntegerWidth::zeroFillTo(0)), in roundingFigures() 1494 NumberFormatter::with().integerWidth(IntegerWidth::zeroFillTo(1)), in integerWidth() 1509 NumberFormatter::with().integerWidth(IntegerWidth::zeroFillTo(0)), in integerWidth() 1524 NumberFormatter::with().integerWidth(IntegerWidth::zeroFillTo(3)), in integerWidth() 1539 NumberFormatter::with().integerWidth(IntegerWidth::zeroFillTo(1).truncateAt(3)), in integerWidth() 1554 NumberFormatter::with().integerWidth(IntegerWidth::zeroFillTo(2).truncateAt(2)), in integerWidth() 2349 VALID_RANGE_ONEARG(integerWidth, IntegerWidth::zeroFillTo, 0); in validRanges() 2350 VALID_RANGE_ONEARG(integerWidth, IntegerWidth::zeroFillTo(0).truncateAt, -1); in validRanges()
|
/external/mesa3d/src/hgl/ |
D | GLView.cpp | 208 glViewport(0, 0, Bounds().IntegerWidth(), Bounds().IntegerHeight()); in AttachedToWindow() 210 fRenderer->FrameResized(Bounds().IntegerWidth(), in AttachedToWindow()
|