mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
c0b65e4a8f
--HG-- extra : rebase_source : 2561787b6f9ae3dc626cb6bf76e6f78f6cd15664
47 lines
939 B
C
47 lines
939 B
C
/*
|
|
********************************************************************************
|
|
* Copyright (C) 2012, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
********************************************************************************/
|
|
|
|
#ifndef DCFMTIMP_H
|
|
#define DCFMTIMP_H
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
#if UCONFIG_FORMAT_FASTPATHS_49
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
enum EDecimalFormatFastpathStatus {
|
|
kFastpathNO = 0,
|
|
kFastpathYES = 1,
|
|
kFastpathUNKNOWN = 2 /* not yet set */
|
|
};
|
|
|
|
/**
|
|
* Must be smaller than DecimalFormat::fReserved
|
|
*/
|
|
struct DecimalFormatInternal {
|
|
uint8_t fFastFormatStatus;
|
|
uint8_t fFastParseStatus;
|
|
|
|
#ifdef FMT_DEBUG
|
|
void dump() const {
|
|
printf("DecimalFormatInternal: fFastFormatStatus=%c, fFastParseStatus=%c\n",
|
|
"NY?"[(int)fFastFormatStatus&3],
|
|
"NY?"[(int)fFastParseStatus&3]
|
|
);
|
|
}
|
|
#endif
|
|
};
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
#endif
|
|
|
|
#endif
|