OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:text_row
(Results
1 - 3
of
3
) sorted by null
/bootable/recovery/
screen_ui.cpp
65
text_row
(0),
354
text_col =
text_row
= 0;
486
text[
text_row
][text_col] = '\0';
488
text_row
= (
text_row
+ 1) % text_rows;
489
if (
text_row
== text_top) text_top = (text_top + 1) % text_rows;
491
if (*ptr != '\n') text[
text_row
][text_col++] = *ptr;
493
text[
text_row
][text_col] = '\0';
screen_ui.h
93
int text_col,
text_row
, text_top;
member in class:ScreenRecoveryUI
/external/chromium_org/ui/gfx/
canvas_skia.cc
340
uint32_t*
text_row
= text_bitmap.getAddr32(0, cur_y);
local
342
if (
text_row
[cur_x] == halo_premul) {
346
text_row
[cur_x] = 0; // Make transparent.
348
text_row
[cur_x] |= 0xff << SK_A32_SHIFT; // Make opaque.
Completed in 220 milliseconds