Searched refs:Proto1 (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp400 const FunctionProtoType *Proto1,
403 auto Spec1 = Proto1->getExceptionSpecType();
412 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
414 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
415 if (!IsStructurallyEquivalent(Context, Proto1->getExceptionType(I),
420 if (!IsStructurallyEquivalent(Context, Proto1->getNoexceptExpr(),
649 const auto *Proto1 = cast<FunctionProtoType>(T1); local
652 if (Proto1->getNumParams() != Proto2->getNumParams())
654 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
655 if (!IsStructurallyEquivalent(Context, Proto1
399 IsEquivalentExceptionSpec(StructuralEquivalenceContext &Context, const FunctionProtoType *Proto1, const FunctionProtoType *Proto2) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp5012 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>(); local
5015 assert(Proto1 && Proto2 && "Function templates must have prototypes");
5066 Args1.insert(Args1.end(), Proto1->param_type_begin(),
5067 Proto1->param_type_end());
5092 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(),

Completed in 97 milliseconds