reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1405 EXPECT_TRUE(T.isInteger()); 1406 T = APFloat(3.14159); 1407 EXPECT_FALSE(T.isInteger()); 1408 T = APFloat::getNaN(APFloat::IEEEdouble()); 1409 EXPECT_FALSE(T.isInteger()); 1410 T = APFloat::getInf(APFloat::IEEEdouble()); 1411 EXPECT_FALSE(T.isInteger()); 1412 T = APFloat::getInf(APFloat::IEEEdouble(), true); 1413 EXPECT_FALSE(T.isInteger()); 1414 T = APFloat::getLargest(APFloat::IEEEdouble()); 1415 EXPECT_TRUE(T.isInteger());