HomeSort by relevance Sort by last modified time
    Searched full:isnan (Results 201 - 225 of 904) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/v8/src/
objects-debug.cc 424 CHECK(!std::isnan(value) ||
467 CHECK(year()->IsUndefined() || year()->IsSmi() || year()->IsNaN());
468 CHECK(month()->IsUndefined() || month()->IsSmi() || month()->IsNaN());
469 CHECK(day()->IsUndefined() || day()->IsSmi() || day()->IsNaN());
470 CHECK(weekday()->IsUndefined() || weekday()->IsSmi() || weekday()->IsNaN());
471 CHECK(hour()->IsUndefined() || hour()->IsSmi() || hour()->IsNaN());
472 CHECK(min()->IsUndefined() || min()->IsSmi() || min()->IsNaN());
473 CHECK(sec()->IsUndefined() || sec()->IsSmi() || sec()->IsNaN());
476 cache_stamp()->IsNaN());
    [all...]
  /external/compiler-rt/test/Unit/
divdc3_test.c 32 if (isnan(creal(x)) && isnan(cimag(x)))
34 if (isnan(creal(x)))
40 if (isnan(cimag(x)))
divsc3_test.c 32 if (isnan(crealf(x)) && isnan(cimagf(x)))
34 if (isnan(crealf(x)))
40 if (isnan(cimagf(x)))
divtc3_test.c 35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
divxc3_test.c 35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
muldc3_test.c 32 if (isnan(creal(x)) && isnan(cimag(x)))
34 if (isnan(creal(x)))
40 if (isnan(cimag(x)))
mulsc3_test.c 32 if (isnan(crealf(x)) && isnan(cimagf(x)))
34 if (isnan(crealf(x)))
40 if (isnan(cimagf(x)))
multc3_test.c 35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
mulxc3_test.c 35 if (isnan(creall(x)) && isnan(cimagl(x)))
37 if (isnan(creall(x)))
43 if (isnan(cimagl(x)))
  /external/icu4c/test/intltest/
dtfmtrtts.h 70 //while(TPlatformUtilities::isInfinite(a) || TPlatformUtilities::isNaN(a))
  /external/llvm/lib/Support/
Android.mk 35 IsNAN.cpp \
CMakeLists.txt 32 IsNAN.cpp
  /external/skia/src/animator/
SkAnimatorScript.h 58 static bool IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
  /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());
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
shared.rsh 58 static bool isnan(float f) {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
shared.rsh 58 static bool isnan(float f) {
  /libcore/json/src/main/java/org/json/
JSON.java 24 if (Double.isInfinite(d) || Double.isNaN(d)) {
  /external/ceres-solver/google3/
jet_traits.h 47 static bool IsNaN (const Type x) { return isnan(x); }
  /external/chromium_org/chrome/browser/resources/
about_stats.js 165 var x = isNaN(a) ? 0 : a;
166 var y = isNaN(b) ? 0 : b;
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
coordinates.js 51 if (isNaN(min) || merged[i] < min)
53 if (isNaN(max) || merged[i] > max)
  /external/chromium_org/v8/test/intl/
assert.js 62 if (typeof a == 'number') return isNaN(a) && isNaN(b);
  /external/chromium_org/v8/test/mjsunit/harmony/
array-iterator.js 156 assertTrue(isNaN(buffer[buffer.length - 1]));
189 assertTrue(isNaN(buffer[buffer.length - 1][1]));
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 65 "isNaN": "['length', 'name']",
113 "isNaN",
  /external/chromium_org/v8/test/webkit/resources/
standalone-pre.js 83 if (typeof(_expected) == "number" && isNaN(_expected))
84 return typeof(_actual) == "number" && isNaN(_actual);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_float.pass.cpp 157 assert(std::isnan(v));
169 assert(std::isnan(v));

Completed in 960 milliseconds

1 2 3 4 5 6 7 891011>>