Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc161 int argIdx; // argument index, or -1 if not specified ("%n$")
179 dir->argIdx = -1;
197 p = maybe_parse_param_index(p, &dir->argIdx);
319 if (dir.argIdx != -1) {
365 int argIdx; // width argument index, or -1 if not specified ("%*n$")
396 dir->argIdx = -1;
519 if (dir.argIdx != -1 || dir.precisionIdx != -1) {
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h531 bool isRequiredArg(unsigned argIdx) const { in isRequiredArg() argument
532 return argIdx == ~0U || argIdx < NumRequired; in isRequiredArg()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp423 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e; in CheckExtraCXXDefaultArguments() local
424 ++argIdx) { in CheckExtraCXXDefaultArguments()
425 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param); in CheckExtraCXXDefaultArguments()
428 std::move(chunk.Fun.Params[argIdx].DefaultArgTokens); in CheckExtraCXXDefaultArguments()