/external/chromium_org/base/ |
float_util.h | 26 inline bool IsNaN(const Float& number) { 28 return std::isnan(number) != 0;
|
/external/ceres-solver/include/ceres/ |
fpclassify.h | 32 // do not collide with macros. For example, "isnan" in C99 is a macro and hence 51 inline bool IsNaN (double x) { return _isnan(x); } 62 inline bool IsNaN (double x) { return isnan(x); } 73 return !isnan(x) && !IsInfinite(x); 84 inline bool IsNaN (double x) { return std::isnan(x); }
|
jet.h | 557 // to be finite (or normal). For IsNaN and IsInfinite, the answer is less 558 // clear. This takes a "any" approach for IsNaN and IsInfinite such that if any 560 // to strange situations like a jet can be both IsInfinite and IsNaN, but in 594 bool IsNaN(const Jet<T, N>& f) { 595 if (IsNaN(f.a)) { 599 if (IsNaN(f.v[i])) {
|
/external/ceres-solver/internal/ceres/ |
jet_test.cc | 330 EXPECT_TRUE(IsNaN(a)); 341 EXPECT_TRUE(IsNaN(a)); 352 EXPECT_FALSE(IsNaN(a)); 363 EXPECT_FALSE(IsNaN(a));
|
rotation_test.cc | 642 EXPECT_FALSE(IsNaN(x)); 643 EXPECT_FALSE(IsNaN(y));
|
/external/chromium_org/content/renderer/media/ |
websourcebuffer_impl.cc | 13 DCHECK(!base::IsNaN(time));
|
/external/chromium_org/third_party/skia/src/animator/ |
SkAnimatorScript.h | 58 static bool IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
|
SkAnimatorScript.cpp | 59 functionCallBack(IsNaN, (void*) this); 387 bool SkAnimatorScript::IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params, 389 if (SK_LITERAL_STR_EQUAL("isNaN", function, len) == false) 523 { "isNaN(Number.NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER }, 524 { "isNaN(NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER },
|
/external/skia/src/animator/ |
SkAnimatorScript.h | 58 static bool IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
|
SkAnimatorScript.cpp | 59 functionCallBack(IsNaN, (void*) this); 387 bool SkAnimatorScript::IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params, 389 if (SK_LITERAL_STR_EQUAL("isNaN", function, len) == false) 523 { "isNaN(Number.NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER }, 524 { "isNaN(NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER },
|
/external/chromium_org/v8/src/ |
objects-debug.cc | 439 CHECK(!std::isnan(value) || 487 CHECK(year()->IsUndefined() || year()->IsSmi() || year()->IsNaN()); 488 CHECK(month()->IsUndefined() || month()->IsSmi() || month()->IsNaN()); 489 CHECK(day()->IsUndefined() || day()->IsSmi() || day()->IsNaN()); 490 CHECK(weekday()->IsUndefined() || weekday()->IsSmi() || weekday()->IsNaN()); 491 CHECK(hour()->IsUndefined() || hour()->IsSmi() || hour()->IsNaN()); 492 CHECK(min()->IsUndefined() || min()->IsSmi() || min()->IsNaN()); 493 CHECK(sec()->IsUndefined() || sec()->IsSmi() || sec()->IsNaN()); 496 cache_stamp()->IsNaN()); [all...] |
objects-inl.h | 878 bool Object::IsNaN() { 879 return this->IsHeapNumber() && std::isnan(HeapNumber::cast(this)->value()); [all...] |
objects.h | [all...] |
/external/v8/src/ |
objects-debug.cc | 360 ASSERT(!isnan(value) || 382 CHECK(year()->IsUndefined() || year()->IsSmi() || year()->IsNaN()); 383 CHECK(month()->IsUndefined() || month()->IsSmi() || month()->IsNaN()); 384 CHECK(day()->IsUndefined() || day()->IsSmi() || day()->IsNaN()); 385 CHECK(weekday()->IsUndefined() || weekday()->IsSmi() || weekday()->IsNaN()); 386 CHECK(hour()->IsUndefined() || hour()->IsSmi() || hour()->IsNaN()); 387 CHECK(min()->IsUndefined() || min()->IsSmi() || min()->IsNaN()); 388 CHECK(sec()->IsUndefined() || sec()->IsSmi() || sec()->IsNaN()); 391 cache_stamp()->IsNaN());
|
objects-inl.h | 813 bool Object::IsNaN() { 814 return this->IsHeapNumber() && isnan(HeapNumber::cast(this)->value()); [all...] |
objects.h | [all...] |
/external/chromium_org/base/time/ |
time.cc | 90 if (dt == 0 || IsNaN(dt))
|
/external/ceres-solver/google3/ |
jet_traits.h | 47 static bool IsNaN (const Type x) { return isnan(x); }
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
strutil.cc | 58 inline bool IsNaN(double value) { [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
text_format_unittest.cc | 59 inline bool IsNaN(double value) { 713 EXPECT_TRUE(IsNaN(message.repeated_double(11))); 714 EXPECT_TRUE(IsNaN(message.repeated_double(12))); [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
strutil.cc | 58 inline bool IsNaN(double value) { [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/v8/test/cctest/ |
test-api.cc | 45 static bool IsNaN(double x) { 49 return isnan(x); [all...] |