Lines Matching refs:NaN
32 t('NaN', 2, NaN);
33 t('NaN', +0, NaN);
34 t('NaN', -0, NaN);
35 t('NaN', Infinity, NaN);
36 t('NaN', -Infinity, NaN);
38 t('1', NaN, +0);
39 t('1', NaN, -0);
41 t('NaN', NaN, NaN);
42 t('NaN', NaN, 2.2);
43 t('NaN', NaN, 1);
44 t('NaN', NaN, -1);
45 t('NaN', NaN, -2.2);
46 t('NaN', NaN, Infinity);
47 t('NaN', NaN, -Infinity);
61 t('NaN', 1, Infinity);
62 t('NaN', 1, -Infinity);
63 t('NaN', -1, Infinity);
64 t('NaN', -1, -Infinity);
103 t('NaN', -0.00001, 1.1);
104 t('NaN', -0.00001, -1.1);
109 t('NaN', 2, NaN);
564 Math.pow(2, null) = 1 // NaN for Decimal
565 Math.pow(2, undefined) = NaN
566 Math.pow(2, NaN) = NaN
567 Math.pow(2, 'rferf') = NaN
568 Math.pow(2, []) = 1 // NaN for Decimal
569 Math.pow(2, {}) = NaN // NaN for Decimal
574 A negative number to a non-integer power is NaN
580 If y is NaN, the result is NaN.
581 If y is +0, the result is 1, even if x is NaN.
582 If y is -0, the result is 1, even if x is NaN.
583 If x is NaN and y is nonzero, the result is NaN.
586 If abs(x)==1 and y is +Infinity, the result is NaN.
587 If abs(x)==1 and y is -Infinity, the result is NaN.
602 If x<0 and x is finite and y is finite and y is not an integer, the result is NaN.