Home | History | Annotate | Download | only in tui

Lines Matching refs:current_group

440    CURRENT_GROUP in the register group list for GDBARCH, with wrap around
443 If CURRENT_GROUP is nullptr (e.g. if the tui register window has only
450 tui_reg_next (const reggroup *current_group, struct gdbarch *gdbarch)
453 auto it = std::find (groups.begin (), groups.end (), current_group);
462 CURRENT_GROUP in the register group list for GDBARCH, with wrap around
465 If CURRENT_GROUP is nullptr (e.g. if the tui register window has only
472 tui_reg_prev (const reggroup *current_group, struct gdbarch *gdbarch)
475 auto it = std::find (groups.rbegin (), groups.rend (), current_group);
508 const reggroup *current_group = tui_data_win ()->get_current_group ();
510 match = tui_reg_next (current_group, gdbarch);
512 match = tui_reg_prev (current_group, gdbarch);