Home
last modified time | relevance | path

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

/bootable/recovery/recovery_ui/include/recovery_ui/
Dvr_ui.h42 int DrawTextLine(int x, int y, const std::string& line, bool bold) const override;
Dscreen_ui.h60 virtual int DrawTextLine(int x, int y, const std::string& line, bool bold) const = 0;
331 int DrawTextLine(int x, int y, const std::string& line, bool bold) const override;
/bootable/recovery/recovery_ui/
Dscreen_ui.cpp164 offset += draw_funcs_.DrawTextLine(x, y + offset, cur_selection_str, true); in DrawHeader()
192 offset += draw_funcs_.DrawTextLine(x, y + offset, TextItem(i), bold); in DrawItems()
550 text_y += DrawTextLine(text_x, text_y, header, true); in SelectAndShowBackgroundText()
565 text_y += DrawTextLine(text_x, text_y, p.first, false); in SelectAndShowBackgroundText()
633 int ScreenRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const { in DrawTextLine() function in ScreenRecoveryUI
641 offset += DrawTextLine(x, y + offset, line, false); in DrawTextLines()
669 offset += DrawTextLine(x, y + offset, sub, false); in DrawWrappedTextLines()
727 y += DrawTextLine(x, y, title_lines_[i], i == 0); in draw_menu_and_text_buffer_locked()
743 DrawTextLine(margin_width_, ty, text_[row], false); in draw_menu_and_text_buffer_locked()
Dvr_ui.cpp48 int VrRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const { in DrawTextLine() function in VrRecoveryUI
/bootable/recovery/tests/unit/
Dscreen_ui_test.cpp50 int DrawTextLine(int /* x */, int /* y */, const std::string& /* line */, in DrawTextLine() function in MockDrawFunctions