Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DFS.cpp115 llvm::SmallString<128> CanonPath(File); in removeDots() local
116 llvm::sys::path::remove_dots(CanonPath, /*remove_dot_dot=*/true); in removeDots()
117 return CanonPath.str().str(); in removeDots()
H A DGlobalCompilationDatabase.cpp780 std::string CanonPath = removeDots(File); in setCompileCommand() local
784 Commands[CanonPath] = std::move(*Cmd); in setCompileCommand()
786 Commands.erase(CanonPath); in setCompileCommand()
788 OnCommandChanged.broadcast({CanonPath}); in setCompileCommand()
/llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp36 llvm::SmallString<256> CanonPath; in finishedMainFile() local
38 CanonPath = File; in finishedMainFile()
39 llvm::sys::path::remove_dots(CanonPath, /*remove_dot_dot=*/true); in finishedMainFile()
40 C.handleFileDependency(CanonPath); in finishedMainFile()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DSymbolCollector.cpp232 auto CanonPath = getCanonicalPath(FE, SM); in toURI() local
233 R.first->second = &toURIInternal(CanonPath ? *CanonPath : FE->getName()); in toURI()