OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fractiondigits
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Number/
15.7.4.6-1.js
22
* SUMMARY: Testing Number.prototype.toExponential(
fractionDigits
)
31
var summary = 'Testing Number.prototype.toExponential(
fractionDigits
)';
52
* 15.7.4.6 Number.prototype.toExponential(
fractionDigits
)
55
* for values of
fractionDigits
less than 0 or greater than 20. In this
58
status = 'Section B of test: expect RangeError because
fractionDigits
< 0';
63
status = 'Section C of test: expect RangeError because
fractionDigits
> 20 ';
15.7.4.5-1.js
22
* SUMMARY: Testing Number.prototype.toFixed(
fractionDigits
)
31
var summary = 'Testing Number.prototype.toFixed(
fractionDigits
)';
52
* 15.7.4.5 Number.prototype.toFixed(
fractionDigits
)
55
* for values of
fractionDigits
less than 0 or greater than 20. In this
58
status = 'Section B of test: expect RangeError because
fractionDigits
< 0';
63
status = 'Section C of test: expect RangeError because
fractionDigits
> 20 ';
/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
));
/external/webkit/Source/WebCore/platform/text/mac/
LocalizedNumberMac.mm
68
String formatLocalizedNumber(double inputNumber, unsigned
fractionDigits
)
72
[formatter.get() setMaximumFractionDigits:
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/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/libxml2/
trio.c
[
all
...]
xmlschemas.c
[
all
...]
relaxng.c
[
all
...]
Completed in 749 milliseconds