Lines Matching defs:PathMappingList

1 //===-- PathMappingList.cpp -----------------------------------------------===//
15 #include "lldb/Target/PathMappingList.h"
30 // When PathMappingList::RemapPath() is called, it expects the path to start
40 // PathMappingList constructor
41 PathMappingList::PathMappingList() : m_pairs() {}
43 PathMappingList::PathMappingList(ChangedCallback callback, void *callback_baton)
46 PathMappingList::PathMappingList(const PathMappingList &rhs)
49 const PathMappingList &PathMappingList::operator=(const PathMappingList &rhs) {
61 PathMappingList::~PathMappingList() = default;
63 void PathMappingList::AppendNoLock(llvm::StringRef path,
69 void PathMappingList::Notify(bool notify) const {
81 void PathMappingList::Append(llvm::StringRef path, llvm::StringRef replacement,
90 void PathMappingList::Append(const PathMappingList &rhs, bool notify) {
104 bool PathMappingList::AppendUnique(llvm::StringRef path,
121 void PathMappingList::Insert(llvm::StringRef path, llvm::StringRef replacement,
137 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef replacement,
150 bool PathMappingList::Remove(size_t index, bool notify) {
166 void PathMappingList::Dump(Stream *s, int pair_index) {
183 llvm::json::Value PathMappingList::ToJSON() {
194 void PathMappingList::Clear(bool notify) {
204 bool PathMappingList::RemapPath(ConstString path,
225 std::optional<FileSpec> PathMappingList::RemapPath(llvm::StringRef mapping_path,
263 PathMappingList::ReverseRemapPath(const FileSpec &file, FileSpec &fixed) const {
282 PathMappingList::FindFile(const FileSpec &orig_spec) const {
293 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef new_path,
307 bool PathMappingList::Remove(ConstString path, bool notify) {
321 PathMappingList::const_iterator
322 PathMappingList::FindIteratorForPath(ConstString path) const {
335 PathMappingList::iterator
336 PathMappingList::FindIteratorForPath(ConstString path) {
349 bool PathMappingList::GetPathsAtIndex(uint32_t idx, ConstString &path,
361 PathMappingList::FindIndexForPathNoLock(llvm::StringRef orig_path) const {