OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isnan
(Results
201 - 225
of
398
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libxml2/
config.h
95
/* Define if
isnan
is there */
/external/v8/src/
double.h
133
bool
IsNan
() const {
platform-win32.cc
56
int
isnan
(double x) {
function
69
return
isnan
(x) ||
isnan
(y) ? 0 : x < y;
75
return
isnan
(x) ||
isnan
(y) ? 0 : x > y;
230
if (!(isfinite(x) && (!isfinite(y) && !
isnan
(y))) &&
[
all
...]
/external/v8/test/mjsunit/
string-add.js
127
assertTrue(
isNaN
(void 0 + void 0), "vv");
/external/webkit/Source/JavaScriptCore/API/
JSValueRef.cpp
219
if (
isnan
(value))
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.36-4.js
196
var T = (
isNaN
(t) ) ? 0 : LocalTime(t) ;
15.9.5.36-5.js
183
var T = (
isNaN
(t) ) ? 0 : LocalTime(t) ;
15.9.5.36-6.js
170
var T = (
isNaN
(t) ) ? 0 : LocalTime(t) ;
15.9.5.36-7.js
155
var T = (
isNaN
(t) ) ? 0 : LocalTime(t) ;
/external/webkit/Source/WebCore/platform/audio/
Reverb.cpp
76
if (isinf(power) ||
isnan
(power) || power < MinPower)
/external/webkit/Source/WebCore/webaudio/
AudioPannerNode.cpp
45
if (
isnan
(x) || isinf(x))
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
ChoiceFormatTest.java
337
assertTrue("Not NaN", Double.
isNaN
(ChoiceFormat.nextDouble(Double.NaN)));
369
assertTrue("Incorrect result", Double.
isNaN
(f1.parse("12one", pos)
387
assertTrue("Not NaN", Double.
isNaN
(ChoiceFormat
/external/llvm/device/include/llvm/Config/
config.h
182
/* Set to 1 if the
isnan
function is found in <cmath> */
185
/* Set to 1 if the
isnan
function is found in <math.h> */
361
/* Set to 1 if the std::
isnan
function is found in <cmath> */
/external/llvm/host/include/llvm/Config/
config.h
179
/* Set to 1 if the
isnan
function is found in <cmath> */
182
/* Set to 1 if the
isnan
function is found in <math.h> */
354
/* Set to 1 if the std::
isnan
function is found in <cmath> */
/external/llvm/include/llvm/Config/
config.h.cmake
175
/* Set to 1 if the
isnan
function is found in <cmath> */
178
/* Set to 1 if the
isnan
function is found in <math.h> */
360
/* Set to 1 if the std::
isnan
function is found in <cmath> */
config.h.in
191
/* Set to 1 if the
isnan
function is found in <cmath> */
194
/* Set to 1 if the
isnan
function is found in <math.h> */
373
/* Set to 1 if the std::
isnan
function is found in <cmath> */
/external/webkit/Source/WebCore/xml/
XPathFunctions.cpp
504
if (
isnan
(doublePos))
511
if (
isnan
(doubleLen))
661
if (!
isnan
(val) && !isinf(val)) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DoubleTest.java
367
* @tests java.lang.Double#
isNaN
()
370
// Test for method boolean java.lang.Double.
isNaN
()
372
assertTrue("NAN returned false", d.
isNaN
());
374
assertTrue("Non NAN returned true", !d.
isNaN
());
378
* @tests java.lang.Double#
isNaN
(double)
381
// Test for method boolean java.lang.Double.
isNaN
(double)
384
assertTrue("NAN check failed", Double.
isNaN
(d.doubleValue()));
[
all
...]
/external/valgrind/main/none/tests/ppc32/
testVMX.c
[
all
...]
/external/protobuf/src/google/protobuf/
text_format_unittest.cc
59
inline bool
IsNaN
(double value) {
651
EXPECT_TRUE(
IsNaN
(message.repeated_double(11)));
652
EXPECT_TRUE(
IsNaN
(message.repeated_double(12)));
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp
1011
if (
isnan
(ms))
[
all
...]
/external/webkit/Source/WebCore/inspector/front-end/
AuditRules.js
456
if (
isNaN
(dateHeaderMs))
468
if (!
isNaN
(expDate))
473
return (
isNaN
(freshnessLifetimeMs)) ? false : freshnessLifetimeMs > timeMs;
[
all
...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
index.html
270
if (
isNaN
(slideNumber) || !slide) {
/external/mesa3d/src/glsl/builtins/profiles/
130.frag
292
bool
isnan
(float x);
293
bvec2
isnan
(vec2 x);
294
bvec3
isnan
(vec3 x);
295
bvec4
isnan
(vec4 x);
[
all
...]
130.vert
292
bool
isnan
(float x);
293
bvec2
isnan
(vec2 x);
294
bvec3
isnan
(vec3 x);
295
bvec4
isnan
(vec4 x);
[
all
...]
Completed in 391 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>