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

References

tools/lldb/source/Core/IOHandler.cpp
 2621     m_first_visible_row = 0;
 2644     if (m_first_visible_row > 0 && num_rows < num_visible_rows)
 2645       m_first_visible_row = 0;
 2648     if (m_selected_row_idx < m_first_visible_row)
 2649       m_first_visible_row = m_selected_row_idx;
 2650     else if (m_first_visible_row + num_visible_rows <= m_selected_row_idx)
 2651       m_first_visible_row = m_selected_row_idx - num_visible_rows + 1;
 2728       if (m_first_visible_row > 0) {
 2729         if (static_cast<int>(m_first_visible_row) > m_max_y)
 2730           m_first_visible_row -= m_max_y;
 2732           m_first_visible_row = 0;
 2733         m_selected_row_idx = m_first_visible_row;
 2741         if (m_first_visible_row + m_max_y < m_num_rows) {
 2742           m_first_visible_row += m_max_y;
 2743           m_selected_row_idx = m_first_visible_row;
 2903       if ((m_num_rows >= m_first_visible_row) &&
 2904           ((m_num_rows - m_first_visible_row) <
 2907         row.y = m_num_rows - m_first_visible_row + 1;