OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isnan
(Results
1 - 25
of
503
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.6.js
24
ECMA Section: 15.1.2.6
isNaN
( x )
27
the result
isNaN
and otherwise returns false.
36
var TITLE = "
isNaN
( x )";
51
array[item++] = new TestCase( SECTION, "
isNaN
.length", 1,
isNaN
.length );
52
array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in
isNaN
) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in
isNaN
) { MYPROPS+= p }; MYPROPS") );
53
array[item++] = new TestCase( SECTION, "
isNaN
.length = null;
isNaN
.length", 1, eval("
isNaN
.length=null; isNaN.length") )
[
all
...]
/external/llvm/autoconf/m4/
func_isnan.m4
2
# This function determines if the
isnan
function is available on this
7
[
isnan
], [<math.h>],
8
[float f;
isnan
(f);])
11
AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the
isnan
function is found in <math.h>])
15
[
isnan
], [<cmath>],
16
[float f;
isnan
(f);])
18
AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the
isnan
function is found in <cmath>])
22
[std::
isnan
], [<cmath>],
23
[float f; std::
isnan
(f);])
25
AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::
isnan
function is found in <cmath>]
[
all
...]
/external/llvm/projects/sample/autoconf/m4/
func_isnan.m4
2
# This function determines if the
isnan
function is available on this
7
[
isnan
], [<math.h>],
8
[float f;
isnan
(f);])
11
AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the
isnan
function is found in <math.h>])
15
[
isnan
], [<cmath>],
16
[float f;
isnan
(f);])
18
AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the
isnan
function is found in <cmath>])
22
[std::
isnan
], [<cmath>],
23
[float f; std::
isnan
(f);])
25
AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::
isnan
function is found in <cmath>]
[
all
...]
/external/v8/test/mjsunit/
number-is.js
28
// Test Harmony Number.isFinite() and Number.
isNaN
() functions.
45
assertFalse(Number.
isNaN
(0));
46
assertFalse(Number.
isNaN
(Number.MIN_VALUE));
47
assertFalse(Number.
isNaN
(Number.MAX_VALUE));
48
assertTrue(Number.
isNaN
(Number.NaN));
49
assertFalse(Number.
isNaN
(Number.POSITIVE_INFINITY));
50
assertFalse(Number.
isNaN
(Number.NEGATIVE_INFINITY));
51
assertFalse(Number.
isNaN
(new Number(0)));
52
assertFalse(Number.
isNaN
(1/0));
53
assertFalse(Number.
isNaN
(-1/0))
[
all
...]
string-charcodeat.js
116
assertTrue(
isNaN
(g().charCodeAt(-1e19)), 1 + t);
117
assertTrue(
isNaN
(g().charCodeAt(-0x80000001)), 2 + t);
118
assertTrue(
isNaN
(g().charCodeAt(-0x80000000)), 3 + t);
119
assertTrue(
isNaN
(g().charCodeAt(-0x40000000)), 4 + t);
120
assertTrue(
isNaN
(g().charCodeAt(-1)), 5 + t);
121
assertTrue(
isNaN
(g().charCodeAt(len)), 6 + t);
122
assertTrue(
isNaN
(g().charCodeAt(len + 1)), 7 + t);
123
assertTrue(
isNaN
(g().charCodeAt(0x3fffffff)), 8 + t);
124
assertTrue(
isNaN
(g().charCodeAt(0x7fffffff)), 9 + t);
125
assertTrue(
isNaN
(g().charCodeAt(0x80000000)), 10 + t)
[
all
...]
parse-int-float.js
45
assertTrue(
isNaN
(parseInt('0x ')));
46
assertTrue(
isNaN
(parseInt('0x')));
47
assertTrue(
isNaN
(parseInt('0x ', 16)));
48
assertTrue(
isNaN
(parseInt('0x', 16)));
95
assertTrue(
isNaN
(parseInt(0/0)));
96
assertTrue(
isNaN
(parseInt(1/0)), "parseInt Infinity");
97
assertTrue(
isNaN
(parseInt(-1/0)), "parseInt -Infinity");
99
assertTrue(
isNaN
(parseFloat(0/0)));
/external/llvm/lib/Support/
IsNAN.cpp
1
//===--
IsNAN
.cpp ---------------------------------------------------------===//
10
// Platform-independent wrapper around C99
isnan
().
22
using std::
isnan
;
25
#define
isnan
_isnan
27
# error "Don't know how to get
isnan
()"
31
int
IsNAN
(float f) { return
isnan
(f); }
32
int
IsNAN
(double d) { return
isnan
(d); }
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
math_conformance.rs
9
_RS_ASSERT(
isnan
(rootn(1.0f, 0)));
28
_RS_ASSERT(
isnan
(rootn(-10000.f, -4)));
29
_RS_ASSERT(
isnan
(rootn(-10000.f, 4)));
32
_RS_ASSERT(!
isnan
(rootn(-10000.f, -3)));
33
_RS_ASSERT(!
isnan
(rootn(-10000.f, 3)));
/external/webkit/Source/WebCore/css/
WebKitCSSMatrix.cpp
108
if (
isnan
(x))
110
if (
isnan
(y))
112
if (
isnan
(z))
119
if (
isnan
(scaleX))
121
if (
isnan
(scaleY))
123
if (
isnan
(scaleZ))
130
if (
isnan
(rotX))
133
if (
isnan
(rotY) &&
isnan
(rotZ)) {
139
if (
isnan
(rotY)
[
all
...]
/external/llvm/test/Archive/
IsNAN.o
GNU.a
55
IsNAN
.o/ 1100833470 500 500 100644 2280 `
75
" - GNU C++ 3.4.0 /proj/work/llvm/build/../llvm/lib/Support/
IsNAN
.cpp long double int char double ? llvm ?
IsNAN