Home | History | Annotate | Download | only in AST

Lines Matching refs:Proto1

536     const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1);
538 if (Proto1->getNumParams() != Proto2->getNumParams())
540 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
541 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
545 if (Proto1->isVariadic() != Proto2->isVariadic())
547 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
549 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
550 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
552 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
554 Proto1->getExceptionType(I),
558 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) {
560 Proto1->getNoexceptExpr(),
564 if (Proto1->getTypeQuals() != Proto2->getTypeQuals())