Searched refs:rows (Results 1 - 25 of 57) sorted by last modified time

123

/haiku/src/preferences/screen/
H A DScreenWindow.cpp265 fRowsControl = new BSpinner("rows", B_TRANSLATE("Rows:"),
271 uint32 rows; local
272 BPrivate::get_workspaces_layout(&columns, &rows);
274 fRowsControl->SetValue(rows);
284 // rows
351 rows = modeCount / 3 + 1;
376 int y = index % rows;
377 int x = index / rows;
962 uint32 rows; local
963 BPrivate::get_workspaces_layout(&columns, &rows);
1031 uint32 rows; local
1315 uint32 rows; local
[all...]
/haiku/src/apps/terminal/
H A DTermWindow.cpp876 int32 columns, rows; local
878 || message->FindInt32("rows", &rows) != B_OK) {
884 view->SetTermSize(rows, columns, true);
1795 int32 rows = windowSizes[i][1]; local
1796 snprintf(label, sizeof(label), "%" B_PRId32 " �� %" B_PRId32, columns, rows);
1799 message->AddInt32("rows", rows);
H A DTermView.cpp187 TermView::TermView(int rows, int columns, argument
194 fRows(rows),
244 if (archive->FindInt32("rows", (int32*)&fRows) < B_OK)
466 status = data->AddInt32("rows", (int32)fRows);
580 //! Set number of rows and columns in terminal
582 TermView::SetTermSize(int rows, int columns, bool notifyShell) argument
585 if (rows == fRows && columns == fColumns)
588 //debug_printf("TermView::SetTermSize(%d, %d)\n", rows, columns);
589 if (rows > 0)
590 fRows = rows;
637 int rows; local
650 int rows = int((rect.IntegerHeight() + 1) / fFontHeight); local
1569 int32 rows = (int32)((height + 1) / fFontHeight); local
1590 text << columns << " x " << rows; local
[all...]
H A DTermView.h60 TermView(int rows, int columns,
86 BRect SetTermSize(int rows, int columns,
91 int *rows, int *columns);
305 // Terminal rows and columns.
H A DAppearPrefView.h56 void _SetWindowSize(int rows, int cols);
H A DAppearPrefView.cpp221 int rows = msg->FindInt32("rows"); local
223 _SetWindowSize(rows, columns);
225 if (handler->getInt32(PREF_ROWS) != rows) {
226 PrefHandler::Default()->setInt32(PREF_ROWS, rows);
330 AppearancePrefView::_SetWindowSize(int rows, int cols) argument
335 if (msg->FindInt32("rows") == rows && msg->FindInt32("columns") == cols) {
H A DShell.cpp123 unsigned short row; /* terminal rows */
214 Shell::UpdateWindowSize(int rows, int columns) argument
217 winSize.ws_row = rows;
/haiku/src/servers/app/
H A DWorkspacesView.h37 void _GetGrid(int32& columns, int32& rows);
H A DWorkspacesView.cpp65 WorkspacesView::_GetGrid(int32& columns, int32& rows) argument
70 rows = settings.WorkspacesRows();
89 int32 columns, rows; local
90 _GetGrid(columns, rows);
96 int32 height = frame.IntegerHeight() / rows;
109 if (row == rows - 1)
125 int32 columns, rows; local
126 _GetGrid(columns, rows);
128 for (index = columns * rows; index-- > 0;) {
375 int32 columns, rows; local
[all...]
H A DDesktop.h167 status_t SetWorkspacesLayout(int32 columns, int32 rows);
H A DDesktopSettings.cpp129 int32 rows; local
131 && settings.FindInt32("rows", &rows) == B_OK) {
132 _ValidateWorkspacesLayout(columns, rows);
134 fWorkspacesRows = rows;
356 settings.AddInt32("rows", fWorkspacesRows);
615 DesktopSettingsPrivate::SetWorkspacesLayout(int32 columns, int32 rows) argument
617 _ValidateWorkspacesLayout(columns, rows);
619 fWorkspacesRows = rows;
817 int32& rows) cons
[all...]
H A DDesktopSettingsPrivate.h68 void SetWorkspacesLayout(int32 columns, int32 rows);
105 int32& rows) const;
/haiku/src/kits/tracker/infowindow/
H A DAttributesView.cpp495 int32 rows = fListView->CountRows(NULL); local
496 if (rows < 5)
497 rows = 5;
500 float height = first->Height() * (rows + 2);
/haiku/src/apps/drivesetup/
H A DMainWindow.cpp88 int32 rows = fPartitionList->CountRows(); local
89 for (int32 i = rows - 1; i >= 0; i--) {
1440 int32 rows = list->CountRows(currentRow); local
1441 for (int32 i = 0; i < rows; i++) {
/haiku/src/servers/app/font/
H A DFontEngine.cpp300 buf += bitmap.pitch * (bitmap.rows - 1);
301 y += bitmap.rows;
304 for (unsigned int i = 0; i < bitmap.rows; i++) {
331 buf += bitmap.pitch * (bitmap.rows - 1);
332 y += bitmap.rows;
335 for (unsigned int i = 0; i < bitmap.rows; i++) {
378 buf += bitmap.pitch * (bitmap.rows - 1);
379 y += bitmap.rows;
383 for (unsigned int i = 0; i < bitmap.rows; i++) {
/haiku/src/add-ons/translators/tiff/
H A DTIFFTranslator.cpp276 convert_buffer_bgra_rgba(uint8* buffer, uint32 rows, uint32 width, argument
279 for (uint32 y = 0; y < rows; y++) {
293 convert_buffer_argb_rgba(uint8* buffer, uint32 rows, uint32 width, argument
296 for (uint32 y = 0; y < rows; y++) {
312 convert_buffers_bgra_rgba(uint8* inBuffer, uint8* outBuffer, uint32 rows, argument
315 for (uint32 y = 0; y < rows; y++) {
333 convert_buffers_argb_rgba(uint8* inBuffer, uint8* outBuffer, uint32 rows, argument
336 for (uint32 y = 0; y < rows; y++) {
354 convert_buffers_bgrX_rgb(uint8* inBuffer, uint8* outBuffer, uint32 rows, argument
357 for (uint32 y = 0; y < rows;
377 convert_buffers_rgbX_rgb(uint8* inBuffer, uint8* outBuffer, uint32 rows, uint32 width, uint32 bytesPerRow, uint32 samplesPerPixel) argument
398 convert_buffers_cmap(uint8* inBuffer, uint8* outBuffer, uint32 rows, uint32 width, uint32 bytesPerRow) argument
412 convert_buffer(color_space format, uint8* buffer, uint32 rows, uint32 width, uint32 bytesPerRow) argument
443 convert_buffers(color_space format, uint8* inBuffer, uint8* outBuffer, uint32 rows, uint32 width, uint32 bytesPerRow) argument
[all...]
/haiku/src/kits/interface/
H A DInterfaceDefs.cpp317 int32 rows = 1; local
325 link.Read<int32>(&rows);
331 *_rows = rows;
336 set_workspaces_layout(uint32 columns, uint32 rows) argument
338 if (columns < 1 || rows < 1)
344 link.Attach<int32>(rows);
978 uint32 rows; local
979 BPrivate::get_workspaces_layout(&columns, &rows);
981 return columns * rows;
990 int32 rows local
[all...]
/haiku/src/system/kernel/debug/
H A Dframe_buffer_console.cpp59 int32 rows; member in struct:console_info
244 *_height = sConsole.rows;
267 if (x >= sConsole.columns || y >= sConsole.rows
279 if (x >= sConsole.columns || y >= sConsole.rows
288 if (bottom > sConsole.rows)
289 bottom = sConsole.rows;
437 sConsole.rows = sConsole.height / sConsole.font->glyphHeight;
442 TRACE(("framebuffer mapped at %p, %ld columns, %ld rows\n",
443 (void*)sConsole.frame_buffer, sConsole.columns, sConsole.rows));
H A Dblue_screen.cpp49 int32 rows; member in struct:screen_info
101 sModule->blit(0, 1, sScreen.columns, sScreen.rows - 1, 0, 0);
116 if (sScreen.y == sScreen.rows - 1)
127 && ((sScreen.in_command_rows + 3) % sScreen.rows) == 0)
128 || (sScreen.boot_debug_output && sScreen.y == sScreen.rows - 1))) {
170 if (sScreen.y == sScreen.rows - 1) {
178 if (sScreen.y + 2 < sScreen.rows) {
179 sModule->fill_glyph(0, (sScreen.y + 2) % sScreen.rows, sScreen.columns,
630 sModule->get_size(&sScreen.columns, &sScreen.rows);
/haiku/src/apps/pairs/
H A DPairsWindow.cpp94 difficultyMessage->AddInt32("rows", 4);
101 difficultyMessage->AddInt32("rows", 6);
107 difficultyMessage->AddInt32("rows", 8);
144 PairsWindow::_MakeGameView(uint8 rows, uint8 cols) argument
170 fPairsView = new PairsView(viewBounds, "PairsView", rows, cols, iconSize);
172 _ResizeWindow(rows, cols);
187 PairsWindow::SetGameSize(uint8 rows, uint8 cols) argument
192 _MakeGameView(rows, cols);
207 int32 rows; local
209 if (message->FindInt32("rows",
350 _ResizeWindow(uint8 rows, uint8 cols) argument
[all...]
/haiku/src/apps/activitymonitor/
H A DActivityView.cpp1240 int32 rows = (fSources.CountItems() + 1) / 2; local
1245 return rows * (4 + ceilf(fontHeight.ascent)
1283 int32 rows = (fSources.CountItems() + 1) / 2; local
1284 float height = floorf((frame.Height() - 5) / rows);
/haiku/src/add-ons/translators/sgi/
H A DSGITranslator.cpp324 uint8** rows = new(nothrow) uint8*[channelCount]; local
325 if (rows)
326 rows[0] = new(nothrow) uint8[width * channelCount * bytesPerChannel];
329 if (rows && rows[0] && rowBuffer) {
332 rows[i] = rows[0] + i * width;
345 rows[0][x] = src[0];
353 rows[0][x] = src[2];
354 rows[
523 uint8** rows = new(nothrow) uint8*[channelCount]; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9280_attach.c535 for (i = 0; i < ia->rows; i++) {
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_reset.c2704 int rows, cols; member in struct:ini
H A Dar5416_attach.c363 int rows, cols; member in struct:ini

Completed in 187 milliseconds

123