Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Sema/
DSemaOverload.cpp2613 const FunctionProtoType *FromFunctionType in isObjCPointerConversion() local
2617 if (FromFunctionType && ToFunctionType) { in isObjCPointerConversion()
2626 if (FromFunctionType->getNumParams() != ToFunctionType->getNumParams() || in isObjCPointerConversion()
2627 FromFunctionType->isVariadic() != ToFunctionType->isVariadic() || in isObjCPointerConversion()
2628 FromFunctionType->getMethodQuals() != ToFunctionType->getMethodQuals()) in isObjCPointerConversion()
2632 if (Context.getCanonicalType(FromFunctionType->getReturnType()) == in isObjCPointerConversion()
2635 } else if (isObjCPointerConversion(FromFunctionType->getReturnType(), in isObjCPointerConversion()
2646 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumParams(); in isObjCPointerConversion()
2648 QualType FromArgType = FromFunctionType->getParamType(ArgIdx); in isObjCPointerConversion()
2761 const FunctionProtoType *FromFunctionType in IsBlockPointerConversion() local
[all …]
/external/clang/include/clang/AST/
DASTContext.h2281 const FunctionProtoType *FromFunctionType,