Home | History | Annotate | Download | only in AST

Lines Matching defs:Proto1

627                                       const FunctionProtoType *Proto1,
630 auto Spec1 = Proto1->getExceptionSpecType();
639 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
641 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
642 if (!IsStructurallyEquivalent(Context, Proto1->getExceptionType(I),
647 if (!IsStructurallyEquivalent(Context, Proto1->getNoexceptExpr(),
876 const auto *Proto1 = cast<FunctionProtoType>(T1);
879 if (Proto1->getNumParams() != Proto2->getNumParams())
881 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
882 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
886 if (Proto1->isVariadic() != Proto2->isVariadic())
889 if (Proto1->getMethodQuals() != Proto2->getMethodQuals())