OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fExponent
(Results
1 - 10
of
10
) sorted by null
/external/icu/icu4c/source/i18n/
visibledigits.h
38
VisibleDigits() :
fExponent
(0), fFlags(0), fAbsIntValue(0), fAbsIntValueSet(FALSE), fAbsDoubleValue(0.0), fAbsDoubleValueSet(FALSE) { }
84
* example,
fExponent
= 2 and fDigits = {7, 8, 5} represents 58700.
86
int32_t
fExponent
;
137
return fHasExponent ? &
fExponent
: NULL;
141
fExponent
.clear();
152
VisibleDigits
fExponent
;
visibledigits.cpp
43
fExponent
= 0;
64
if (digitPos <
fExponent
|| digitPos >=
fExponent
+ fDigits.length()) {
68
return ptr[digitPos -
fExponent
];
72
return (
fExponent
+ fDigits.length() > fInterval.getMostSignificantExclusive());
96
int32_t mostSigNonZero =
fExponent
+ fDigits.length();
99
int32_t start = leastSig >
fExponent
? leastSig :
fExponent
;
107
const char *src = &(fDigits.data()[start -
fExponent
]);
digitformatter.h
99
fExponent
.equals(rhs.
fExponent
));
110
DigitFormatterIntOptions
fExponent
;
228
UnicodeString
fExponent
;
digitformatter.cpp
31
fIsStandardDigits(TRUE),
fExponent
("E", -1, US_INV) {
61
fExponent
= symbols.getConstSymbol(DecimalFormatSymbols::kExponentialSymbol);
157
count +=
fExponent
.countChar32();
159
exponent, options.
fExponent
);
259
appendTo.append(
fExponent
);
264
options.
fExponent
,
401
(
fExponent
== rhs.
fExponent
);
decimalformatpattern.h
97
UnicodeString
fExponent
;
decimalformatpattern.cpp
101
fExponent
((UChar)kPatternExponent),
125
fExponent
= symbols.getConstSymbol(
269
if (pattern.compare(pos,
fExponent
.length(),
fExponent
) == 0) {
284
pos +=
fExponent
.length();
precision.cpp
169
digits.
fExponent
= value.getLowerExponent();
309
digits.
fExponent
= exponent;
411
exponentPrecision.initVisibleDigits(exponent, digits.
fExponent
, status);
decimfmtimpl.h
304
return fOptions.
fExponent
.fAlwaysShowSign;
307
fOptions.
fExponent
.fAlwaysShowSign = x;
decimfmtimpl.cpp
850
fOptions.
fExponent
.fAlwaysShowSign = out.fExponentSignAlwaysShown;
[
all
...]
/external/icu/icu4c/source/test/intltest/
numberformat2test.cpp
[
all
...]
Completed in 708 milliseconds