Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/clangd/
H A DPathMapping.cpp33 ? Mapping.ClientPath in doPathMapping()
37 : Mapping.ClientPath; 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()
177 llvm::Expected<std::string> ParsedClientPath = parsePath(ClientPath); in parsePathMappings()
H A DPathMapping.h38 std::string ClientPath; 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;