/external/v8/test/mjsunit/ |
date.js | 54 assertTrue(isNaN(dOverflow.getTime())); 63 assertTrue(isNaN(dUnderflow.getTime())); 83 assertTrue(isNaN(c.getMonth())); 88 assertTrue(isNaN(d.getUTCMonth())); 94 assertTrue(isNaN(e.getDate())); 99 assertTrue(isNaN(f.getUTCDate())); 105 assertTrue(isNaN(g.getHours())); 110 assertTrue(isNaN(h.getUTCHours())); 116 assertTrue(isNaN(g.getMinutes())); 121 assertTrue(isNaN(h.getUTCHours())) [all...] |
str-to-num.js | 69 assertTrue(isNaN(toNumber(" NaN "))); 197 assertTrue(isNaN(toNumber("junk")), "junk"); 198 assertTrue(isNaN(toNumber("100 junk")), "100 junk"); 199 assertTrue(isNaN(toNumber("0x100 junk")), "0x100 junk"); 200 assertTrue(isNaN(toNumber("100.0 junk")), "100.0 junk"); 201 assertTrue(isNaN(toNumber(".1e4 junk")), ".1e4 junk"); 202 assertTrue(isNaN(toNumber("Infinity junk")), "Infinity junk"); 203 assertTrue(isNaN(toNumber("1e")), "1e"); 204 assertTrue(isNaN(toNumber("1e ")), "1e_"); 205 assertTrue(isNaN(toNumber("1" + repeat('0', 1000) + 'junk')), "1e1000 junk") [all...] |
string-charat.js | 74 assertTrue(isNaN(s().charCodeAt(-1))); 75 assertTrue(isNaN(s().charCodeAt(len))); 76 assertTrue(isNaN(s().charCodeAt(slowIndexOutOfRange))); 77 assertTrue(isNaN(s().charCodeAt(1/0))); 78 assertTrue(isNaN(s().charCodeAt(-1/0))); 122 assertTrue(isNaN(o.charCodeAt(-1))); 123 assertTrue(isNaN(o.charCodeAt(-1.4))); 124 assertTrue(isNaN(o.charCodeAt(10))); 125 assertTrue(isNaN(o.charCodeAt(slowIndexOutOfRange)));
|
sum-0-plus-undefined-is-NaN.js | 38 assertEquals(expectNaN, isNaN(sum(x, y))); 41 assertEquals(expectNaN, isNaN(sum(x, y)));
|
unicode-string-to-number.js | 31 assertTrue(isNaN(Number('2\u11372')), "short-string"); 45 assertTrue(isNaN(Number(s)), "long-string");
|
/frameworks/compile/libbcc/runtime/lib/ |
divxc3.c | 37 if (isnan(__real__ z) && isnan(__imag__ z)) 39 if ((__denom == 0) && (!isnan(__a) || !isnan(__b)))
|
divdc3.c | 36 if (isnan(__real__ z) && isnan(__imag__ z)) 38 if ((__denom == 0.0) && (!isnan(__a) || !isnan(__b)))
|
divsc3.c | 36 if (isnan(__real__ z) && isnan(__imag__ z)) 38 if ((__denom == 0) && (!isnan(__a) || !isnan(__b)))
|
/external/v8/src/ |
win32-math.cc | 55 int isnan(double x) { function 68 return isnan(x) || isnan(y) ? 0 : x < y; 74 return isnan(x) || isnan(y) ? 0 : x > y;
|
/external/v8/test/cctest/ |
test-double.cc | 115 TEST(IsNan) { 116 CHECK(Double(OS::nan_value()).IsNan()); 118 CHECK(Double(other_nan).IsNan()); 119 CHECK(!Double(V8_INFINITY).IsNan()); 120 CHECK(!Double(-V8_INFINITY).IsNan()); 121 CHECK(!Double(0.0).IsNan()); 122 CHECK(!Double(-0.0).IsNan()); 123 CHECK(!Double(1.0).IsNan()); 124 CHECK(!Double(-1.0).IsNan()); 126 CHECK(!Double(min_double64).IsNan()); [all...] |
test-conversions.cc | 59 CHECK(isnan(StringToDouble(&uc, "07.7", ALLOW_HEX | ALLOW_OCTALS))); 60 CHECK(isnan(StringToDouble(&uc, "07.8", ALLOW_HEX | ALLOW_OCTALS))); 61 CHECK(isnan(StringToDouble(&uc, "07e8", ALLOW_HEX | ALLOW_OCTALS))); 62 CHECK(isnan(StringToDouble(&uc, "07e7", ALLOW_HEX | ALLOW_OCTALS))); 101 CHECK(isnan(StringToDouble(&uc, " ", NO_FLAGS, OS::nan_value()))); 102 CHECK(isnan(StringToDouble(&uc, "", NO_FLAGS, OS::nan_value()))); 103 CHECK(isnan(StringToDouble(&uc, " ", NO_FLAGS, OS::nan_value()))); 118 CHECK(isnan(StringToDouble(&uc, " - 1 ", NO_FLAGS))); 119 CHECK(isnan(StringToDouble(&uc, " + 1 ", NO_FLAGS)));
|
/frameworks/compile/libbcc/runtime/lib/ppc/ |
multc3.c | 18 if (isnan((x).s.hi)) { \ 39 if (isnan(real.s.hi) && isnan(imag.s.hi))
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldFloatTest.java | 83 assertFalse(Float.isNaN(12.09f)); 84 assertFalse(Float.isNaN(Float.MAX_VALUE)); 85 assertFalse(Float.isNaN(Float.MIN_VALUE));
|
/external/webkit/Tools/WebKitLauncher/ |
start.html | 12 if (isNaN(revision))
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/ |
special_function_util.h | 106 /// This is a wrapper for the isnan function. Otherwise, for NaN, 107 /// all comparisons result in false. If/when we build a std::isnan 109 /// std::isnan. 113 return std::isnan(__x);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/ |
special_function_util.h | 106 /// This is a wrapper for the isnan function. Otherwise, for NaN, 107 /// all comparisons result in false. If/when we build a std::isnan 109 /// std::isnan. 113 return std::isnan(__x);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/ |
special_function_util.h | 106 /// This is a wrapper for the isnan function. Otherwise, for NaN, 107 /// all comparisons result in false. If/when we build a std::isnan 109 /// std::isnan. 113 return std::isnan(__x);
|
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
special_function_util.h | 106 /// This is a wrapper for the isnan function. Otherwise, for NaN, 107 /// all comparisons result in false. If/when we build a std::isnan 109 /// std::isnan. 113 return std::isnan(__x);
|
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
special_function_util.h | 106 /// This is a wrapper for the isnan function. Otherwise, for NaN, 107 /// all comparisons result in false. If/when we build a std::isnan 109 /// std::isnan. 113 return std::isnan(__x);
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
special_function_util.h | 106 /// This is a wrapper for the isnan function. Otherwise, for NaN, 107 /// all comparisons result in false. If/when we build a std::isnan 109 /// std::isnan. 113 return std::isnan(__x);
|
/bionic/libm/src/ |
e_scalb.c | 38 if (isnan(x)||isnan(fn)) return x*fn;
|
s_fdim.c | 37 if (isnan(x)) \ 39 if (isnan(y)) \
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
while-002.js | 75 ( isNaN(object.whileExpression) && isNaN(expression) )
|
while-003.js | 76 ( isNaN(object.whileExpression) && isNaN(expression) )
|
/external/webkit/Source/WebCore/bindings/js/ |
JSWebKitPointCustom.cpp | 44 if (isnan(x)) 46 if (isnan(y))
|