Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOverload.cpp2366 const FunctionProtoType *FromFunctionType in isObjCPointerConversion() local
2370 if (FromFunctionType && ToFunctionType) { in isObjCPointerConversion()
2379 if (FromFunctionType->getNumParams() != ToFunctionType->getNumParams() || in isObjCPointerConversion()
2380 FromFunctionType->isVariadic() != ToFunctionType->isVariadic() || in isObjCPointerConversion()
2381 FromFunctionType->getTypeQuals() != ToFunctionType->getTypeQuals()) in isObjCPointerConversion()
2385 if (Context.getCanonicalType(FromFunctionType->getReturnType()) == in isObjCPointerConversion()
2388 } else if (isObjCPointerConversion(FromFunctionType->getReturnType(), in isObjCPointerConversion()
2399 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumParams(); in isObjCPointerConversion()
2401 QualType FromArgType = FromFunctionType->getParamType(ArgIdx); in isObjCPointerConversion()
2514 const FunctionProtoType *FromFunctionType in IsBlockPointerConversion() local
[all …]
/external/clang/include/clang/AST/
DASTContext.h2281 const FunctionProtoType *FromFunctionType,