Lines Matching refs:LocalIndexRoot
58 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()
315 assert(!LocalIndexRoot.empty()); in relativePathToURI()
321 llvm::SmallString<256> FullPath = llvm::StringRef(LocalIndexRoot); in relativePathToURI()