|
clang-tools 22.0.0git
|
#include "UnusedParametersCheck.h"#include "clang/AST/ASTContext.h"#include "clang/AST/ASTLambda.h"#include "clang/AST/Attr.h"#include "clang/AST/Decl.h"#include "clang/AST/RecursiveASTVisitor.h"#include "clang/ASTMatchers/ASTMatchFinder.h"#include "clang/Basic/SourceManager.h"#include "clang/Lex/Lexer.h"#include <unordered_map>#include <unordered_set>Go to the source code of this file.
Classes | |
| class | clang::tidy::misc::UnusedParametersCheck::IndexerVisitor |
Namespaces | |
| namespace | clang |
| ===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===// | |
| namespace | clang::tidy |
| namespace | clang::tidy::misc |
Functions | |
| static bool | clang::tidy::misc::isOverrideMethod (const FunctionDecl *Function) |
| static bool | clang::tidy::misc::hasAttrAfterParam (const SourceManager *SourceManager, const ParmVarDecl *Param) |
| template<typename T> | |
| static CharSourceRange | clang::tidy::misc::removeNode (const MatchFinder::MatchResult &Result, const T *PrevNode, const T *Node, const T *NextNode) |
| static FixItHint | clang::tidy::misc::removeParameter (const MatchFinder::MatchResult &Result, const FunctionDecl *Function, unsigned Index) |
| static FixItHint | clang::tidy::misc::removeArgument (const MatchFinder::MatchResult &Result, const CallExpr *Call, unsigned Index) |