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

/external/clang/lib/AST/
H A DASTImporter.cpp538 const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1); local
540 if (Proto1->getNumParams() != Proto2->getNumParams())
542 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
543 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
547 if (Proto1->isVariadic() != Proto2->isVariadic())
549 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
551 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
552 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
554 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
556 Proto1
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp4116 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>(); local
4119 assert(Proto1 && Proto2 && "Function templates must have prototypes");
4164 Args1.insert(Args1.end(), Proto1->param_type_begin(),
4165 Proto1->param_type_end());
4188 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(),

Completed in 127 milliseconds