OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:text_rows_
(Results
1 - 3
of
3
) sorted by null
/bootable/recovery/
wear_ui.cpp
138
for (int ty = gr_fb_height() - char_height_ - kMarginHeight; ty > y + 2 && count <
text_rows_
;
142
if (row < 0) row =
text_rows_
- 1;
158
if (
text_rows_
> 0 && text_cols_ > 0) {
161
// "i <
text_rows_
" is removed from the loop termination condition,
164
// more entries than
text_rows_
. The menu may be truncated otherwise.
173
menu_end =
text_rows_
- 1 - kMenuUnusableRows;
screen_ui.cpp
68
text_rows_
(0),
472
for (int ty = ScreenHeight() - kMarginHeight - char_height_; ty >= y && count <
text_rows_
;
476
if (row < 0) row =
text_rows_
- 1;
592
text_rows_
= (ScreenHeight() - kMarginHeight * 2) / char_height_;
609
text_ = Alloc2d(
text_rows_
, text_cols_ + 1);
610
file_viewer_text_ = Alloc2d(
text_rows_
, text_cols_ + 1);
742
if (
text_rows_
> 0 && text_cols_ > 0) {
747
text_row_ = (text_row_ + 1) %
text_rows_
;
785
for (size_t i = 0; i <
text_rows_
; ++i) {
830
while (text_row_ <
text_rows_
- 1) PutChar('\n')
[
all
...]
screen_ui.h
178
size_t text_cols_,
text_rows_
;
member in class:ScreenRecoveryUI
Completed in 2988 milliseconds