Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp159 bool Sema::checkArgCount(CallExpr *Call, unsigned DesiredArgCount) { in checkArgCount() argument
161 if (ArgCount == DesiredArgCount) in checkArgCount()
164 if (checkArgCountAtLeast(Call, DesiredArgCount)) in checkArgCount()
166 assert(ArgCount > DesiredArgCount && "should have diagnosed this"); in checkArgCount()
169 SourceRange Range(Call->getArg(DesiredArgCount)->getBeginLoc(), in checkArgCount()
173 << 0 /*function call*/ << DesiredArgCount << ArgCount in checkArgCount()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2420 bool checkArgCount(CallExpr *Call, unsigned DesiredArgCount);