HomeSort by: relevance | last modified time | path
    Searched refs:Proto1 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTStructuralEquivalence.cpp 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)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateDeduction.cpp 5080 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>();
5083 assert(Proto1 && Proto2 && "Function templates must have prototypes");
5134 Args1.insert(Args1.end(), Proto1->param_type_begin(),
5135 Proto1->param_type_end());
5160 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(),

Completed in 57 milliseconds