reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/APFloat.h
 1158   bool isZero() const { return getCategory() == fcZero; }
 1159   bool isInfinity() const { return getCategory() == fcInfinity; }
 1160   bool isNaN() const { return getCategory() == fcNaN; }
lib/Support/APFloat.cpp
 4248   return Floats[0].getCategory();
tools/clang/lib/AST/ExprConstant.cpp
10634     switch (Val.getCategory()) {
unittests/ADT/APFloatTest.cpp
 2016     EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
 2304     EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
 2593     EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
 2882     EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
 3412       EXPECT_EQ(Expected, A1.getCategory())
 3422       EXPECT_EQ(Expected, A2.getCategory())
 3580       EXPECT_EQ(Expected, A1.getCategory())
 3590       EXPECT_EQ(Expected, A2.getCategory())