HomeSort by relevance Sort by last modified time
    Searched full:testtoexponential (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/v8/test/mjsunit/
number-tostring-func.js 244 function testToExponential(a, b) {
252 testToExponential("1e+0", (1));
253 testToExponential("1.1e+1", (11));
254 testToExponential("1.12e+2", (112));
255 testToExponential("1e-1", (0.1));
256 testToExponential("1.1e-1", (0.11));
257 testToExponential("1.12e-1", (0.112));
258 testToExponential("-1e+0", (-1));
259 testToExponential("-1.1e+1", (-11));
260 testToExponential("-1.12e+2", (-112))
    [all...]

Completed in 74 milliseconds