Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp1820 m_num_rows(0), m_selected_row_idx(0), m_first_visible_row(0), in TreeWindowDelegate()
1857 if (m_first_visible_row > 0 && m_num_rows < num_visible_rows) in WindowDelegateDraw()
1858 m_first_visible_row = 0; in WindowDelegateDraw()
1861 if (m_selected_row_idx < m_first_visible_row) in WindowDelegateDraw()
1862 m_first_visible_row = m_selected_row_idx; in WindowDelegateDraw()
1863 else if (m_first_visible_row + num_visible_rows <= m_selected_row_idx) in WindowDelegateDraw()
1864 m_first_visible_row = m_selected_row_idx - num_visible_rows + 1; in WindowDelegateDraw()
1868 m_root.Draw(window, m_first_visible_row, m_selected_row_idx, row_idx, in WindowDelegateDraw()
1905 if (m_first_visible_row > 0) { in WindowDelegateHandleChar()
1906 if (m_first_visible_row > m_max_y) in WindowDelegateHandleChar()
[all …]