Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp1552 bool highlight = is_selected && current_choice == m_choice; in DrawContent()
1555 surface.PutChar(current_choice == m_choice ? ACS_DIAMOND : ' '); in DrawContent()
1575 if (m_choice > 0) in SelectPrevious()
1576 m_choice--; in SelectPrevious()
1580 if (m_choice < GetNumberOfChoices() - 1) in SelectNext()
1581 m_choice++; in SelectNext()
1585 if (m_choice > GetLastVisibleChoice()) { in UpdateScrolling()
1586 m_first_visibile_choice = m_choice - (m_number_of_visible_choices - 1); in UpdateScrolling()
1590 if (m_choice < m_first_visibile_choice) in UpdateScrolling()
1591 m_first_visibile_choice = m_choice; in UpdateScrolling()
[all …]