Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaChecking.cpp52 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) { in checkArgCount() argument
54 if (argCount == desiredArgCount) return false; in checkArgCount()
56 if (argCount < desiredArgCount) in checkArgCount()
58 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()
62 SourceRange range(call->getArg(desiredArgCount)->getLocStart(), in checkArgCount()
66 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()