reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaOverload.cpp
 2701   if (!FromFunctionType || !ToFunctionType)
 2709   if (FromFunctionType->getNumParams() != ToFunctionType->getNumParams() ||
 2710       FromFunctionType->isVariadic() != ToFunctionType->isVariadic())
 2713   FunctionType::ExtInfo FromEInfo = FromFunctionType->getExtInfo();
 2719   if (Context.hasSameType(FromFunctionType->getReturnType(),
 2723     QualType RHS = FromFunctionType->getReturnType();
 2742    for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumParams();
 2745      QualType FromArgType = FromFunctionType->getParamType(ArgIdx);
 2761    if (!Context.mergeExtParameterInfo(ToFunctionType, FromFunctionType,