Home
last modified time | relevance | path

Searched refs:FProto (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DLowLevelHelpers.cpp48 const FunctionProtoType *FProto = nullptr; in matchEachArgumentWithParamTypeImpl() local
58 FProto = QT->getPointeeType()->getAs<FunctionProtoType>(); in matchEachArgumentWithParamTypeImpl()
63 FProto = MP->getPointeeType()->getAs<FunctionProtoType>(); in matchEachArgumentWithParamTypeImpl()
64 assert(FProto && in matchEachArgumentWithParamTypeImpl()
73 if (FProto && FProto->isVariadic()) in matchEachArgumentWithParamTypeImpl()
74 NumArgs = std::min(NumArgs, FProto->getNumParams()); in matchEachArgumentWithParamTypeImpl()
78 if (FProto && FProto->getNumParams() > ParamIndex) in matchEachArgumentWithParamTypeImpl()
79 ParamType = FProto->getParamType(ParamIndex); in matchEachArgumentWithParamTypeImpl()