clang-tools 23.0.0git
clang::tidy::modernize::DeclFinderASTVisitor Class Reference

Class used to determine if any declarations used in a Stmt would conflict with a particular identifier. More...

#include <LoopConvertUtils.h>

Inheritance diagram for clang::tidy::modernize::DeclFinderASTVisitor:
[legend]

Public Member Functions

 DeclFinderASTVisitor (const StringRef &Name, const StmtGeneratedVarNameMap *GeneratedDecls)
bool findUsages (const Stmt *Body)
 Attempts to find any usages of variables name Name in Body, returning true when it is used in Body.

Friends

class RecursiveASTVisitor< DeclFinderASTVisitor >

Detailed Description

Class used to determine if any declarations used in a Stmt would conflict with a particular identifier.

This search includes the names that don't actually appear in the AST (i.e. created by a refactoring tool) by including a map from Stmts to generated names associated with those stmts.

Definition at line 170 of file LoopConvertUtils.h.

Constructor & Destructor Documentation

◆ DeclFinderASTVisitor()

clang::tidy::modernize::DeclFinderASTVisitor::DeclFinderASTVisitor ( const StringRef & Name,
const StmtGeneratedVarNameMap * GeneratedDecls )
inline

Definition at line 172 of file LoopConvertUtils.h.

Member Function Documentation

◆ findUsages()

bool clang::tidy::modernize::DeclFinderASTVisitor::findUsages ( const Stmt * Body)
inline

Attempts to find any usages of variables name Name in Body, returning true when it is used in Body.

This includes the generated loop variables of ForStmts which have already been transformed.

Definition at line 179 of file LoopConvertUtils.h.

◆ RecursiveASTVisitor< DeclFinderASTVisitor >

friend class RecursiveASTVisitor< DeclFinderASTVisitor >
friend

Definition at line 179 of file LoopConvertUtils.h.


The documentation for this class was generated from the following files: