Lines Matching defs:cell
1087 struct tty3270_cell *cell;
1092 cell = line->cells + line->len;
1093 cell->character = tp->view.ascebc[' '];
1094 cell->highlight = tp->highlight;
1095 cell->f_color = tp->f_color;
1100 cell = line->cells + tp->cx;
1101 cell->character = tp->view.ascebc[(unsigned int) ch];
1102 cell->highlight = tp->highlight;
1103 cell->f_color = tp->f_color;
1113 struct tty3270_cell *cell;
1126 for (i = 0, cell = line->cells; i < line->len; i++, cell++) {
1127 if (cell->highlight != highlight) {
1129 highlight = cell->highlight;
1131 if (cell->f_color != f_color) {
1133 f_color = cell->f_color;
1170 for (i = 0, cell = line->cells; i < line->len; i++, cell++) {
1171 if (cell->highlight != highlight) {
1174 *cp++ = cell->highlight;
1175 highlight = cell->highlight;
1177 if (cell->f_color != f_color) {
1180 *cp++ = cell->f_color;
1181 f_color = cell->f_color;
1183 *cp++ = cell->character;
1314 struct tty3270_cell *cell;
1318 cell = line->cells + tp->cx++;
1319 cell->character = ' ';
1320 cell->highlight = TAX_RESET;
1321 cell->f_color = TAC_RESET;
1337 struct tty3270_cell *cell;
1345 cell = line->cells + i;
1346 cell->character = ' ';
1347 cell->highlight = TAX_RESET;
1348 cell->f_color = TAC_RESET;