Home | History | Annotate | Download | only in Sema

Lines Matching refs:FromFunctionType

2151   const FunctionProtoType *FromFunctionType
2155 if (FromFunctionType && ToFunctionType) {
2164 if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
2165 FromFunctionType->isVariadic() != ToFunctionType->isVariadic() ||
2166 FromFunctionType->getTypeQuals() != ToFunctionType->getTypeQuals())
2170 if (Context.getCanonicalType(FromFunctionType->getResultType())
2173 } else if (isObjCPointerConversion(FromFunctionType->getResultType(),
2184 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
2186 QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
2299 const FunctionProtoType *FromFunctionType
2304 if (!FromFunctionType || !ToFunctionType)
2312 if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
2313 FromFunctionType->isVariadic() != ToFunctionType->isVariadic())
2316 FunctionType::ExtInfo FromEInfo = FromFunctionType->getExtInfo();
2322 if (Context.hasSameType(FromFunctionType->getResultType(),
2326 QualType RHS = FromFunctionType->getResultType();
2345 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
2348 QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
2362 !Context.FunctionTypesMatchOnNSConsumedAttrs(FromFunctionType,