Searched refs:DecimalFormatInternal (Results 1 - 3 of 3) sorted by relevance

/external/icu4c/i18n/
H A Ddcfmtimp.h26 struct DecimalFormatInternal { struct
32 printf("DecimalFormatInternal: fFastFormatStatus=%c, fFastParseStatus=%c\n",
H A Ddecimfmt.cpp80 inline DecimalFormatInternal& internalData(uint8_t *reserved) {
81 return *reinterpret_cast<DecimalFormatInternal*>(reserved);
83 inline const DecimalFormatInternal& internalData(const uint8_t *reserved) {
84 return *reinterpret_cast<const DecimalFormatInternal*>(reserved);
371 DecimalFormatInternal &data = internalData(fReserved);
518 DecimalFormatInternal &data = internalData(fReserved);
1016 DecimalFormatInternal &data = internalData(fReserved);
1126 const DecimalFormatInternal &data = internalData(fReserved);
2164 const DecimalFormatInternal &data = internalData(fReserved);
/external/icu4c/test/intltest/
H A Dnumfmtst.cpp6589 logln("Sizeof DecimalFormat = %d, Sizeof DecimalFormatInternal=%d, UNUM_DECIMALFORMAT_INTERNAL_SIZE=%d\n",
6590 sizeof(DecimalFormat), sizeof(DecimalFormatInternal), UNUM_DECIMALFORMAT_INTERNAL_SIZE);
6591 if(UNUM_DECIMALFORMAT_INTERNAL_SIZE < sizeof(DecimalFormatInternal)) {
6592 errln("Error: sizeof(DecimalFormatInternal)=%d but UNUM_DECIMALFORMAT_INTERNAL_SIZE is only %d. Increase the #define?\n", sizeof(DecimalFormatInternal), UNUM_DECIMALFORMAT_INTERNAL_SIZE);
6593 } else if(UNUM_DECIMALFORMAT_INTERNAL_SIZE > (sizeof(DecimalFormatInternal)+16)) {
6594 infoln("Note: sizeof(DecimalFormatInternal)=%d but UNUM_DECIMALFORMAT_INTERNAL_SIZE is %d. Decrease the #define? sizeof(DecimalFormat)=%d\n", sizeof(DecimalFormatInternal), UNUM_DECIMALFORMAT_INTERNAL_SIZE, sizeof(DecimalFormat));

Completed in 130 milliseconds