Home
last modified time | relevance | path

Searched refs:m_root (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DReproducer.h52 const FileSpec &GetRoot() const { return m_root; } in GetRoot()
69 ProviderBase(const FileSpec &root) : m_root(root) {} in ProviderBase()
75 FileSpec m_root;
110 std::unique_ptr<ProviderBase> provider = llvm::make_unique<T>(m_root); in Create()
145 FileSpec m_root; variable
158 const FileSpec &GetRoot() const { return m_root; } in GetRoot()
162 FileSpec m_root; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DReproducer.cpp138 Generator::Generator(const FileSpec &root) : m_root(root), m_done(false) {} in Generator()
167 llvm::sys::fs::remove_directories(m_root.GetPath()); in Discard()
170 const FileSpec &Generator::GetRoot() const { return m_root; } in GetRoot()
173 FileSpec index = m_root; in AddProvidersToIndex()
187 Loader::Loader(const FileSpec &root) : m_root(root), m_loaded(false) {} in Loader()
193 FileSpec index = m_root.CopyByAppendingPathComponent("index.yaml"); in LoadIndex()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp2227 m_root(nullptr, *delegate_sp, true), m_selected_item(nullptr), in TreeWindowDelegate()
2260 m_root.CalculateRowIndexes(m_num_rows); in WindowDelegateDraw()
2276 m_root.Draw(window, m_first_visible_row, m_selected_row_idx, row_idx, in WindowDelegateDraw()
2279 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateDraw()
2321 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
2334 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
2344 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
2353 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
2372 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
2402 TreeItem m_root; member in TreeWindowDelegate
H A DValueObject.cpp86 m_parent(&parent), m_root(NULL), m_update_point(parent.GetUpdatePoint()), in ValueObject()
115 m_parent(NULL), m_root(NULL), m_update_point(exe_scope), m_name(), in ValueObject()
3188 if (m_root) in GetRoot()
3189 return m_root; in GetRoot()
3190 return (m_root = FollowParentChain([](ValueObject *vo) -> bool { in GetRoot()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObject.h867 ValueObject *m_root; // The root of the hierarchy for this ValueObject (or variable