Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Tooling/DependencyScanning/
DDependencyScanningWorker.cpp34 llvm::SmallString<256> CanonPath; in finishedMainFile() local
36 CanonPath = File; in finishedMainFile()
37 llvm::sys::path::remove_dots(CanonPath, /*remove_dot_dot=*/true); in finishedMainFile()
38 C.handleFileDependency(*Opts, CanonPath); in finishedMainFile()
/external/llvm-project/clang-tools-extra/clangd/
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()
DGlobalCompilationDatabase.cpp392 std::string CanonPath = removeDots(File); in setCompileCommand() local
396 Commands[CanonPath] = std::move(*Cmd); in setCompileCommand()
398 Commands.erase(CanonPath); in setCompileCommand()
400 OnCommandChanged.broadcast({CanonPath}); in setCompileCommand()
/external/llvm-project/clang-tools-extra/clangd/index/
DSymbolCollector.cpp64 if (auto CanonPath = getCanonicalPath(*File, SM)) { in toURI() local
65 AbsolutePath = *CanonPath; in toURI()