Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DIdentifierLengthCheck.cpp109 auto *ExceptionVarName = Result.Nodes.getNodeAs<VarDecl>("exceptionVar"); in check() local
110 if (ExceptionVarName) { in check()
111 if (!ExceptionVarName->getIdentifier()) in check()
114 StringRef VarName = ExceptionVarName->getName(); in check()
119 diag(ExceptionVarName->getLocation(), ErrorMessage) in check()
120 << 1 << ExceptionVarName << MinimumExceptionNameLength; in check()