Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DReproducer.h43 const FileSpec &GetRoot() const { return m_root; } in GetRoot()
63 ProviderBase(const FileSpec &root) : m_root(root) {} in ProviderBase()
67 FileSpec m_root;
112 std::unique_ptr<ProviderBase> provider = std::make_unique<T>(m_root); in Create()
147 FileSpec m_root; variable
178 const FileSpec &GetRoot() const { return m_root; } in GetRoot()
183 FileSpec m_root; variable
/llvm-project-15.0.7/lldb/source/Utility/
H A DReproducer.cpp130 Generator::Generator(FileSpec root) : m_root(MakeAbsolute(std::move(root))) { in Generator()
172 llvm::sys::fs::remove_directories(m_root.GetPath()); in Discard()
179 const FileSpec &Generator::GetRoot() const { return m_root; } in GetRoot()
182 FileSpec index = m_root; in AddProvidersToIndex()
200 : m_root(MakeAbsolute(std::move(root))), m_loaded(false) {} in Loader()
206 FileSpec index = m_root.CopyByAppendingPathComponent("index.yaml"); in LoadIndex()
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp4829 m_root(nullptr, *delegate_sp, true) {} in TreeWindowDelegate()
4849 m_root.CalculateRowIndexes(m_num_rows); in WindowDelegateDraw()
4850 m_delegate_sp->TreeDelegateUpdateSelection(m_root, m_selected_row_idx, in WindowDelegateDraw()
4867 m_root.Draw(window, m_first_visible_row, m_selected_row_idx, row_idx, in WindowDelegateDraw()
4870 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateDraw()
4907 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
4920 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
4930 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
4939 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
4958 m_selected_item = m_root.GetItemForRowIndex(m_selected_row_idx); in WindowDelegateHandleChar()
[all …]
H A DValueObject.cpp3032 if (m_root) in GetRoot()
3033 return m_root; in GetRoot()
3034 return (m_root = FollowParentChain([](ValueObject *vo) -> bool { in GetRoot()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValueObject.h843 ValueObject *m_root = nullptr; variable