Home | History | Annotate | Download | only in src

Lines Matching refs:expectFalse

49     expectFalse(isNaN32(Float.NEGATIVE_INFINITY));
50 expectFalse(isNaN32(-1.0f));
51 expectFalse(isNaN32(-0.0f));
52 expectFalse(isNaN32(0.0f));
53 expectFalse(isNaN32(1.0f));
54 expectFalse(isNaN32(Float.POSITIVE_INFINITY));
57 expectFalse(isNaN32(Float.intBitsToFloat(0x00400000)));
58 expectFalse(isNaN32(Float.intBitsToFloat(0x80400000)));
59 expectFalse(isNaN32(Float.intBitsToFloat(0x00000001)));
60 expectFalse(isNaN32(Float.intBitsToFloat(0x80000001)));
81 expectFalse(isNaN64(Double.NEGATIVE_INFINITY));
82 expectFalse(isNaN32(-1.0f));
83 expectFalse(isNaN64(-0.0d));
84 expectFalse(isNaN64(0.0d));
85 expectFalse(isNaN64(1.0d));
86 expectFalse(isNaN64(Double.POSITIVE_INFINITY));
89 expectFalse(isNaN64(Double.longBitsToDouble(0x0008000000000000l)));
90 expectFalse(isNaN64(Double.longBitsToDouble(0x8008000000000000l)));
91 expectFalse(isNaN64(Double.longBitsToDouble(0x0000000000000001l)));
92 expectFalse(isNaN64(Double.longBitsToDouble(0x8000000000000001l)));
121 private static void expectFalse(boolean value) {