Lines Matching defs:Proto1
774 const FunctionProtoType *Proto1,
777 auto Spec1 = Proto1->getExceptionSpecType();
786 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
788 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
789 if (!IsStructurallyEquivalent(Context, Proto1->getExceptionType(I),
794 if (!IsStructurallyEquivalent(Context, Proto1->getNoexceptExpr(),
1024 const auto *Proto1 = cast<FunctionProtoType>(T1);
1027 if (Proto1->getNumParams() != Proto2->getNumParams())
1029 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
1030 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
1034 if (Proto1->isVariadic() != Proto2->isVariadic())
1037 if (Proto1->getMethodQuals() != Proto2->getMethodQuals())