Home
last modified time | relevance | path

Searched refs:CanFrom (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp1793 CanQualType CanFrom = Context.getCanonicalType(FromType); in IsFunctionConversion() local
1795 if (TyClass != CanFrom->getTypeClass()) return false; in IsFunctionConversion()
1799 CanFrom = CanFrom.castAs<PointerType>()->getPointeeType(); in IsFunctionConversion()
1802 CanFrom = CanFrom.castAs<BlockPointerType>()->getPointeeType(); in IsFunctionConversion()
1805 auto FromMPT = CanFrom.castAs<MemberPointerType>(); in IsFunctionConversion()
1810 CanFrom = FromMPT->getPointeeType(); in IsFunctionConversion()
1816 if (TyClass != CanFrom->getTypeClass()) return false; in IsFunctionConversion()
1821 const auto *FromFn = cast<FunctionType>(CanFrom); in IsFunctionConversion()