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

References

tools/clang/lib/Sema/SemaOverload.cpp
  316   if (auto *ET = ToType->getAs<EnumType>())
  317     ToType = ET->getDecl()->getIntegerType();
  338     if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) {
  341                ToType->isRealFloatingType()) {
  354         llvm::APFloat Result(Ctx.getFloatTypeSemantics(ToType));
  380     if (FromType->isRealFloatingType() && ToType->isRealFloatingType() &&
  381         Ctx.getFloatingTypeOrder(FromType, ToType) == 1) {
  396           Ctx.getFloatTypeSemantics(ToType),
  418     assert(ToType->isIntegralOrUnscopedEnumerationType());
  421     const bool ToSigned = ToType->isSignedIntegerOrEnumerationType();
  422     const unsigned ToWidth = Ctx.getIntWidth(ToType);