Home
last modified time | relevance | path

Searched refs:LocalIndexRoot (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/marshalling/
H A DMarshalling.cpp58 llvm::StringRef LocalIndexRoot) in Marshaller() argument
68 if (!LocalIndexRoot.empty()) { in Marshaller()
69 assert(is_absolute(LocalIndexRoot)); in Marshaller()
70 this->LocalIndexRoot = convert_to_slash(LocalIndexRoot, Style::windows); in Marshaller()
71 llvm::StringRef Path(this->LocalIndexRoot); in Marshaller()
72 if (!is_separator(this->LocalIndexRoot.back(), Style::posix)) in Marshaller()
73 this->LocalIndexRoot += PosixSeparator; in Marshaller()
75 assert(!RemoteIndexRoot.empty() || !LocalIndexRoot.empty()); in Marshaller()
216 assert(!LocalIndexRoot.empty()); in toProtobuf()
227 if (replace_path_prefix(RelativePath, LocalIndexRoot, "")) in toProtobuf()
[all …]
H A DMarshalling.h39 Marshaller(llvm::StringRef RemoteIndexRoot, llvm::StringRef LocalIndexRoot);
99 std::string LocalIndexRoot; variable