Home
last modified time | relevance | path

Searched refs:ServerPath (Results 1 – 3 of 3) sorted by relevance

/llvm-project/clang-tools-extra/clangd/
H A DPathMapping.cpp34 : Mapping.ServerPath; in doPathMapping()
36 ? Mapping.ServerPath in doPathMapping()
165 return OS << M.ClientPath << "=" << M.ServerPath; in operator <<()
170 llvm::StringRef ClientPath, ServerPath, PathPair, Rest = RawPathMappings; in parsePathMappings() local
174 std::tie(ClientPath, ServerPath) = PathPair.split("="); in parsePathMappings()
175 if (ClientPath.empty() || ServerPath.empty()) in parsePathMappings()
180 llvm::Expected<std::string> ParsedServerPath = parsePath(ServerPath); in parsePathMappings()
H A DPathMapping.h39 std::string ServerPath; member
/llvm-project/clang-tools-extra/clangd/unittests/
H A DPathMappingTests.cpp19 MATCHER_P2(Mapping, ClientPath, ServerPath, "") {
20 return arg.ClientPath == ClientPath && arg.ServerPath == ServerPath;