Lines Matching defs:Proto1
777 const FunctionProtoType *Proto1,
780 auto Spec1 = Proto1->getExceptionSpecType();
789 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
791 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
792 if (!IsStructurallyEquivalent(Context, Proto1->getExceptionType(I),
797 if (!IsStructurallyEquivalent(Context, Proto1->getNoexceptExpr(),
1027 const auto *Proto1 = cast<FunctionProtoType>(T1);
1030 if (Proto1->getNumParams() != Proto2->getNumParams())
1032 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
1033 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
1037 if (Proto1->isVariadic() != Proto2->isVariadic())
1040 if (Proto1->getMethodQuals() != Proto2->getMethodQuals())