OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fractionDigits
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/text/
LocalizedNumber.h
50
//
fractionDigits
is the maximum length of the fractional parts of the
52
String formatLocalizedNumber(double, unsigned
fractionDigits
);
LocalizedNumberICU.cpp
78
String formatLocalizedNumber(double number, unsigned
fractionDigits
)
84
formatter->setMaximumFractionDigits(clampToInteger(
fractionDigits
));
/libcore/luni/src/main/java/java/lang/
Double.java
437
int
fractionDigits
= 13;
442
fractionDigits
--;
448
if (significand != 0 &&
fractionDigits
> hexSignificand.length()) {
449
int digitDiff =
fractionDigits
- hexSignificand.length();
459
int
fractionDigits
= 13;
464
fractionDigits
--;
470
if (significand != 0 &&
fractionDigits
> hexSignificand.length()) {
471
int digitDiff =
fractionDigits
- hexSignificand.length();
Float.java
445
int
fractionDigits
= 6;
450
fractionDigits
--;
456
if (significand != 0 &&
fractionDigits
> hexSignificand.length()) {
457
int digitDiff =
fractionDigits
- hexSignificand.length();
467
int
fractionDigits
= 6;
472
fractionDigits
--;
478
if (significand != 0 &&
fractionDigits
> hexSignificand.length()) {
479
int digitDiff =
fractionDigits
- hexSignificand.length();
/external/webkit/Source/WebCore/platform/text/mac/
LocalizedNumberMac.mm
68
String formatLocalizedNumber(double inputNumber, unsigned
fractionDigits
)
72
[formatter.get() setMaximumFractionDigits:
fractionDigits
];
/external/icu4c/samples/numfmt/
main.cpp
131
//
fractionDigits
==minimumFractionDigits==maximumFractionDigits
133
int32_t
fractionDigits
;
169
nf.setMinimumFractionDigits(currencyMap[i].
fractionDigits
);
170
nf.setMaximumFractionDigits(currencyMap[i].
fractionDigits
);
/external/v8/src/
v8natives.js
1068
function NumberToFixed(
fractionDigits
) {
1069
var f = TO_INTEGER(
fractionDigits
);
1079
function NumberToExponential(
fractionDigits
) {
1081
if (!IS_UNDEFINED(
fractionDigits
)) {
1082
f = TO_INTEGER(
fractionDigits
);
[
all
...]
/external/jdiff/
xerces.jar
Completed in 221 milliseconds