Searched refs:cell (Results 1 - 11 of 11) sorted by relevance

/haiku/src/libs/glut/
H A DglutColor.cpp21 void glutSetColor(int cell, GLfloat red, GLfloat green, GLfloat blue) { argument
25 GLfloat glutGetColor(int cell, int component) { argument
/haiku/src/apps/patchbay/
H A DMidiEventMeter.cpp101 BRect cell = METER_BOUNDS; local
102 cell.InsetBy(1, 1);
103 cell.bottom = cell.top + (cell.Height() + 1) / 5;
104 cell.bottom--;
121 view->FillRect(cell);
122 cell.OffsetBy(0, cell.Height() + 1);
/haiku/src/apps/terminal/
H A DHistoryBuffer.cpp113 TerminalCell& cell = buffer->cells[charCount++]; local
115 cell.character.SetTo(chars + i, charLength);
119 cell.attributes = attributes;
122 if (cell.character.IsFullWidth()) {
123 cell.attributes.state |= A_WIDTH;
124 // attributes of the second, "invisible" cell must be
147 const TerminalCell& cell = line->cells[i]; local
148 byteLength += cell.character.ByteCount();
149 if (cell != attributes) {
150 attributes.state = cell
170 const TerminalCell& cell = line->cells[i]; local
[all...]
H A DBasicTerminalBuffer.cpp309 TerminalCell& cell = line->cells[column];
310 character = cell.character;
311 attributes = cell.attributes;
328 TerminalCell& cell = line->cells[c]; local
329 if (c > column && attributes != cell.attributes)
331 attributes = cell.attributes;
354 TerminalCell& cell = line->cells[column]; local
355 if (cell.attributes != attributes)
358 int32 bytes = cell.character.ByteCount();
360 *buffer++ = cell
1663 const TerminalCell& cell = line->cells[x]; local
[all...]
/haiku/docs/interface_guidelines/docbook-css/
H A Dtables.css29 display: table-cell;
54 display: table-cell;
/haiku/src/apps/serialconnect/libvterm/src/
H A Dscreen.c12 /* State of the pen at some moment in time, also used in a cell */
32 /* Internal representation of a screen cell */
39 static int vterm_screen_set_cell(VTermScreen *screen, VTermPos pos, const VTermScreenCell *cell);
176 ScreenCell *cell = getcell(screen, pos.row, pos.col); local
180 if(!cell)
184 cell->chars[i] = info->chars[i];
185 cell->pen = screen->pen;
188 cell->chars[i] = 0;
198 cell->pen.protected_cell = info->protected_cell;
199 cell
275 ScreenCell *cell = getcell(screen, row, col); local
592 ScreenCell *cell = getcell(screen, row, col); local
703 ScreenCell *cell = getcell(screen, row, col); local
743 vterm_screen_get_cell(const VTermScreen *screen, VTermPos pos, VTermScreenCell *cell) argument
781 vterm_screen_set_cell(VTermScreen *screen, VTermPos pos, const VTermScreenCell *cell) argument
816 ScreenCell *cell = getcell(screen, pos.row, pos.col); local
[all...]
/haiku/src/apps/serialconnect/
H A DTermView.cpp78 VTermScreenCell cell; local
83 _GetCell(pos, cell);
95 // - The current cell is under the cursor
96 // - The current cell is right of the cursor
97 if (*(uint32_t*)&cell.attrs != *(uint32_t*)&newCell.attrs
98 || !vterm_color_equal(cell.fg, newCell.fg)
99 || !vterm_color_equal(cell.bg, newCell.bg)
105 foreground.red = cell.fg.red;
106 foreground.green = cell.fg.green;
107 foreground.blue = cell
344 VTermScreenCell cell; local
425 _GetCell(VTermPos pos, VTermScreenCell& cell) argument
[all...]
H A DTermView.h42 void _GetCell(VTermPos pos, VTermScreenCell& cell);
/haiku/headers/libs/agg/
H A Dagg_rasterizer_compound_aa.h39 // A pixel cell. There're no constructors defined and it was done
221 cell_info* cell = &m_cells[st.start_cell]; local
227 int x = cell->x;
228 int area = cell->area;
230 cover += cell->cover;
232 ++cell;
242 if(num_cells && cell->x > x)
248 sl.add_span(x, cell->x - x, alpha);
338 cell_style_aa cell; local
339 cell
490 cell_info* cell; local
[all...]
/haiku/src/system/boot/platform/riscv/
H A Dconsole.cpp76 uint16 cell = sScreenBase[x + y * sScreenWidth]; local
79 uint32 bgColor = kPalette[cell / 0x1000 % 0x10];
80 uint32 fontColor = kPalette[cell / 0x100 % 0x10];
83 BlitMaskRgb(gFramebuf, gFixedFont.ThisGlyph(cell % 0x100),
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h250 VTERM_DAMAGE_CELL, /* every cell */
279 int vterm_screen_get_cell(const VTermScreen *screen, VTermPos pos, VTermScreenCell *cell);

Completed in 69 milliseconds