Home | History | Annotate | Download | only in Sema

Lines Matching refs:FromFunctionType

2274   const FunctionProtoType *FromFunctionType
2278 if (FromFunctionType && ToFunctionType) {
2287 if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
2288 FromFunctionType->isVariadic() != ToFunctionType->isVariadic() ||
2289 FromFunctionType->getTypeQuals() != ToFunctionType->getTypeQuals())
2293 if (Context.getCanonicalType(FromFunctionType->getResultType())
2296 } else if (isObjCPointerConversion(FromFunctionType->getResultType(),
2307 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
2309 QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
2422 const FunctionProtoType *FromFunctionType
2427 if (!FromFunctionType || !ToFunctionType)
2435 if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
2436 FromFunctionType->isVariadic() != ToFunctionType->isVariadic())
2439 FunctionType::ExtInfo FromEInfo = FromFunctionType->getExtInfo();
2445 if (Context.hasSameType(FromFunctionType->getResultType(),
2449 QualType RHS = FromFunctionType->getResultType();
2468 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
2471 QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
2485 !Context.FunctionTypesMatchOnNSConsumedAttrs(FromFunctionType,