HomeSort by relevance Sort by last modified time
    Searched full:isnan (Results 151 - 175 of 398) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/resources/
about_stats.html 222 var x = isNaN(a) ? 0 : a;
223 var y = isNaN(b) ? 0 : b;
  /external/llvm/cmake/
config-ix.cmake 102 check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
103 check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
  /external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h 141 inline bool isnan(double num) { return !!_isnan(num); } function
254 using std::isnan;
  /external/webkit/Source/WebCore/inspector/front-end/
ObjectPropertiesSection.js 116 anum = !isNaN(chunka);
117 bnum = !isNaN(chunkb);
  /libcore/json/src/main/java/org/json/
JSONStringer.java 223 * Integer, Long, Double or null. May not be {@link Double#isNaN() NaNs}
275 * @param value a finite value. May not be {@link Double#isNaN() NaNs} or
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigEditDialog.java 178 if (Float.isNaN(mXDpi) == false) {
202 if (Float.isNaN(mYDpi) == false) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDevice.java 110 if (Float.isNaN(mXDpi) == false) {
114 if (Float.isNaN(mYDpi) == false) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fadd/
Test_fadd.java 64 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_float/
Test_add_float.java 76 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_float_2addr/
Test_add_float_2addr.java 76 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_float/
Test_add_float.java 63 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_float_2addr/
Test_add_float_2addr.java 63 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /external/clang/test/CodeGen/
builtins.c 64 P(isnan, (1.));
  /external/libvpx/examples/includes/geshi/geshi/
haskell.php 80 'significand', 'scaleFloat', 'isNaN', 'isInfinite',
  /external/libxml2/
trionan.c 375 #if (defined(TRIO_COMPILER_SUPPORTS_C99) && defined(isnan)) \
378 * C99 defines isnan() as a macro. UNIX95 defines isnan() as a
383 return isnan(number);
  /external/proguard/src/proguard/gui/
boilerplate.pro 235 public static boolean isNaN(float);
241 public boolean isNaN();
250 public static boolean isNaN(double);
256 public boolean isNaN();
  /external/stlport/stlport/stl/
_cmath.h 538 template<typename _Tp> inline int __capture_isnan(_Tp __f) { return isnan(__f); }
543 #undef isnan macro
548 template<typename _Tp> inline int isnan(_Tp __f) { return __capture_isnan(__f); } function in namespace:__captured
579 using __captured::isnan;
  /external/v8/src/
conversions-inl.h 74 if (isnan(x)) return 0;
  /external/v8/test/mjsunit/
mirror-array.js 95 if (!isNaN(index)) {
undeletable-functions.js 75 "encodeURIComponent", "isNaN", "isFinite", "parseInt", "parseFloat", "eval",
  /external/webkit/Source/JavaScriptCore/runtime/
DateConversion.cpp 63 if (isnan(value))
JSValue.cpp 47 return isnan(d) ? 0.0 : trunc(d);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.10-1.js 149 this.isNaN = new Function( "return this.value" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.3.2-3.js 98 if ( isNaN( num ) || num == 0 || num == Number.POSITIVE_INFINITY || num == Number.NEGATIVE_INFINITY ) {
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 103 if (!isnan(v) && !isinf(v)) {

Completed in 903 milliseconds

1 2 3 4 5 67 8 91011>>