Home
last modified time | relevance | path

Searched refs:VisitDeclRefExpr (Results 1 – 25 of 62) sorted by relevance

123

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DLoopConvertUtils.h108 bool VisitDeclRefExpr(clang::DeclRefExpr *E);
170 bool VisitDeclRefExpr(clang::DeclRefExpr *D);
204 bool VisitDeclRefExpr(clang::DeclRefExpr *D);
355 bool VisitDeclRefExpr(DeclRefExpr *E);
H A DLoopConvertUtils.cpp61 bool ComponentFinderASTVisitor::VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function in clang::tidy::modernize::ComponentFinderASTVisitor
74 bool DependencyFinderASTVisitor::VisitDeclRefExpr(DeclRefExpr *DeclRef) { in VisitDeclRefExpr() function in clang::tidy::modernize::DependencyFinderASTVisitor
127 bool DeclFinderASTVisitor::VisitDeclRefExpr(DeclRefExpr *DeclRef) { in VisitDeclRefExpr() function in clang::tidy::modernize::DeclFinderASTVisitor
751 bool ForLoopIndexUseVisitor::VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function in clang::tidy::modernize::ForLoopIndexUseVisitor
H A DPassByValueCheck.cpp88 bool VisitDeclRefExpr(DeclRefExpr *D) { in paramReferredExactlyOnce() function in clang::tidy::modernize::paramReferredExactlyOnce::ExactlyOneUsageVisitor
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DLexicallyOrderedRecursiveASTVisitorTest.cpp38 bool VisitDeclRefExpr(const DeclRefExpr *D);
94 bool LexicallyOrderedDeclVisitor::VisitDeclRefExpr(const DeclRefExpr *D) { in VisitDeclRefExpr() function in __anona5160f4d0111::LexicallyOrderedDeclVisitor
/llvm-project-15.0.7/clang-tools-extra/include-cleaner/lib/
H A DWalkAST.cpp34 bool VisitDeclRefExpr(DeclRefExpr *DRE) { in VisitDeclRefExpr() function in clang::include_cleaner::__anon496d916a0111::ASTWalker
/llvm-project-15.0.7/clang/unittests/Tooling/RecursiveASTVisitorTests/
H A DCXXMethodDecl.cpp24 bool VisitDeclRefExpr(DeclRefExpr *D) { in VisitDeclRefExpr() function in __anon3730958f0111::CXXMethodDeclVisitor
H A DDeclRefExpr.cpp25 bool VisitDeclRefExpr(DeclRefExpr *Reference) { in VisitDeclRefExpr() function in __anon5f8128f70111::DeclRefExprVisitor
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-tidy/
H A DOverlappingReplacementsTest.cpp91 bool VisitDeclRefExpr(DeclRefExpr *E) { in check() function in clang::tidy::test::__anonc052bcba0111::RefactorCheck::check::UsageVisitor
98 return RecursiveASTVisitor<UsageVisitor>::VisitDeclRefExpr(E); in check()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h44 void VisitDeclRefExpr(PTR(DeclRefExpr) E) { } in VisitDeclRefExpr() function
H A DTextNodeDumper.h255 void VisitDeclRefExpr(const DeclRefExpr *Node);
H A DJSONNodeDumper.h268 void VisitDeclRefExpr(const DeclRefExpr *DRE);
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp65 bool VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function in __anondaa4440f0111::RootBlockObjCVarRewriter::BlockVarChecker
H A DTransProtectedScope.cpp33 bool VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function in __anon7c75b5e40111::LocalRefsCollector
H A DTransforms.cpp217 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; } in VisitDeclRefExpr() function in __anon826ab2670111::ReferenceClear
228 bool VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function in __anon826ab2670111::ReferenceCollector
H A DTransAutoreleasePool.cpp263 bool VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function in __anon6cdd62940211::AutoreleasePoolRewriter::NameReferenceChecker
/llvm-project-15.0.7/clang/lib/Sema/
H A DUsedDeclVisitor.h32 void VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() function
H A DSemaAvailability.cpp623 bool VisitDeclRefExpr(DeclRefExpr *DRE) { in VisitDeclRefExpr() function in __anon8b6ebe000411::LastDeclUSEFinder
700 bool VisitDeclRefExpr(DeclRefExpr *DRE) { in VisitDeclRefExpr() function in __anon8b6ebe000411::DiagnoseUnguardedAvailability
/llvm-project-15.0.7/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h64 bool VisitDeclRefExpr(const DeclRefExpr *Expr) { in VisitDeclRefExpr() function
/llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp111 void VisitDeclRefExpr(const DeclRefExpr *S) { in VisitDeclRefExpr() function in clang::dataflow::TransferVisitor
194 VisitDeclRefExpr(DE); in VisitDeclStmt()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DLiveVariables.cpp171 void VisitDeclRefExpr(DeclRefExpr *DR);
379 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *DR) { in VisitDeclRefExpr() function in TransferFunctions
H A DUninitializedValues.cpp489 void VisitDeclRefExpr(DeclRefExpr *dr);
745 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *dr) { in VisitDeclRefExpr() function in TransferFunctions
H A DCalledOnceCheck.cpp314 const DeclRefExpr *VisitDeclRefExpr(const DeclRefExpr *DR) { return DR; } in VisitDeclRefExpr() function in __anon2223d6250111::DeclRefFinder
441 bool VisitDeclRefExpr(const DeclRefExpr *E) { in VisitDeclRefExpr() function in __anon2223d6250111::NamesCollector
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DExtractVariable.cpp76 bool VisitDeclRefExpr(DeclRefExpr *DeclRef) { // NOLINT in computeReferencedDecls() function in clang::clangd::__anon79575e0f0111::computeReferencedDecls::FindDeclRefsVisitor
/llvm-project-15.0.7/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp268 bool VisitDeclRefExpr(const DeclRefExpr *Expr) { in VisitDeclRefExpr() function in clang::tooling::__anon945a552f0111::RenameLocFinder
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp55 bool VisitDeclRefExpr(DeclRefExpr *DR) { in VisitDeclRefExpr() function in __anon9ba7c1e10111::EHCodeVisitor

123