Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-move/
DMove.cpp128 explicit FindAllIncludes(SourceManager *SM, ClangMoveTool *const MoveTool) in FindAllIncludes() argument
129 : SM(*SM), MoveTool(MoveTool) {} in FindAllIncludes()
139 MoveTool->addIncludes(FileName, IsAngled, SearchPath, in InclusionDirective()
145 ClangMoveTool *const MoveTool; member in clang::move::__anonbee25c890111::FindAllIncludes
150 void MoveDeclFromOldFileToNewFile(ClangMoveTool *MoveTool, const NamedDecl *D) { in MoveDeclFromOldFileToNewFile() argument
151 MoveTool->getMovedDecls().push_back(D); in MoveDeclFromOldFileToNewFile()
152 MoveTool->addRemovedDecl(D); in MoveDeclFromOldFileToNewFile()
153 MoveTool->getUnremovedDeclsInOldHeader().erase(D); in MoveDeclFromOldFileToNewFile()
158 explicit FunctionDeclarationMatch(ClangMoveTool *MoveTool) in FunctionDeclarationMatch() argument
159 : MoveTool(MoveTool) {} in FunctionDeclarationMatch()
[all …]
DMove.h206 : MoveTool(Context, Reporter) { in ClangMoveAction()
207 MoveTool.registerMatchers(&MatchFinder); in ClangMoveAction()
218 ClangMoveTool MoveTool; variable