Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clangd/
DPathMapping.cpp35 ? Mapping.ClientPath in doPathMapping()
39 : Mapping.ClientPath; in doPathMapping()
166 return OS << M.ClientPath << "=" << M.ServerPath; in operator <<()
171 llvm::StringRef ClientPath, ServerPath, PathPair, Rest = RawPathMappings; in parsePathMappings() local
175 std::tie(ClientPath, ServerPath) = PathPair.split("="); in parsePathMappings()
176 if (ClientPath.empty() || ServerPath.empty()) in parsePathMappings()
178 llvm::Expected<std::string> ParsedClientPath = parsePath(ClientPath); in parsePathMappings()
DPathMapping.h34 std::string ClientPath; member
/external/llvm-project/clang-tools-extra/clangd/unittests/
DPathMappingTests.cpp18 MATCHER_P2(Mapping, ClientPath, ServerPath, "") {
19 return arg.ClientPath == ClientPath && arg.ServerPath == ServerPath;