reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Core/IOHandler.cpp
 2239       if (m_first_visible_row > 0 && m_num_rows < num_visible_rows)
 2240         m_first_visible_row = 0;
 2243       if (m_selected_row_idx < m_first_visible_row)
 2244         m_first_visible_row = m_selected_row_idx;
 2245       else if (m_first_visible_row + num_visible_rows <= m_selected_row_idx)
 2246         m_first_visible_row = m_selected_row_idx - num_visible_rows + 1;
 2250       m_root.Draw(window, m_first_visible_row, m_selected_row_idx, row_idx,
 2287       if (m_first_visible_row > 0) {
 2288         if (m_first_visible_row > m_max_y)
 2289           m_first_visible_row -= m_max_y;
 2291           m_first_visible_row = 0;
 2292         m_selected_row_idx = m_first_visible_row;
 2303         if (m_first_visible_row + m_max_y < m_num_rows) {
 2304           m_first_visible_row += m_max_y;
 2305           m_selected_row_idx = m_first_visible_row;