Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaChecking.cpp53 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) { in checkArgCount() argument
55 if (argCount == desiredArgCount) return false; in checkArgCount()
57 if (argCount < desiredArgCount) in checkArgCount()
59 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()
63 SourceRange range(call->getArg(desiredArgCount)->getLocStart(), in checkArgCount()
67 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()