OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxIntDigitCount
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/i18n/
precision.cpp
383
int32_t
maxIntDigitCount
= fMantissa.fMax.getIntDigitCount();
384
if (
maxIntDigitCount
== INT32_MAX) {
388
maxIntDigitCount
- fMantissa.fMin.getIntDigitCount() + 1;
decimfmtimpl.cpp
908
int32_t
maxIntDigitCount
= max.getIntDigitCount();
914
// Not in spec:
maxIntDigitCount
> 8 assume
915
//
maxIntDigitCount
= minIntDigitCount. Current DecimalFormat API has
916
// no provision for unsetting
maxIntDigitCount
which would be useful for
918
//
maxIntDigitCount
is the default of 2000000000 or is "big enough" then
921
if (
maxIntDigitCount
> 8) {
922
maxIntDigitCount
= minIntDigitCount;
925
// Per the spec, exponent grouping happens if
maxIntDigitCount
is more
927
UBool bExponentGrouping =
maxIntDigitCount
> 1 && minIntDigitCount <
maxIntDigitCount
;
[
all
...]
Completed in 550 milliseconds