Searched refs:fRows (Results 1 - 17 of 17) sorted by relevance

/haiku-fatelf/src/tests/apps/miniterminal/
H A DViewBuffer.cpp45 fRows(frame.IntegerHeight() / CHAR_HEIGHT),
63 uint32 size = fRows * fColumns;
81 int32 oldRows = fRows;
84 fRows = (int32)height / CHAR_HEIGHT;
88 uint32 size = fRows * fColumns;
97 int32 rows = min_c(oldRows, fRows);
107 fResizeCallback(fColumns, fRows, fResizeCallbackData);
115 *height = fRows;
152 if (x >= fColumns || y >= fRows)
162 if (x >= fColumns || y >= fRows)
[all...]
H A DViewBuffer.h38 int32 fRows; member in class:ViewBuffer
/haiku-fatelf/src/libs/linprog/
H A DActiveSetSolver.cpp33 fRows(rows),
36 fMatrix = allocate_matrix(fRows, fColumns);
43 zero_matrix(fMatrix, fRows, fColumns);
45 fRowIndices = new int32[fRows];
47 for (int i = 0; i < fRows; i++)
66 fRows = rows;
73 return fRows;
87 if (row < 0 || row >= fRows)
116 if (index < fRows)
141 for (int i = 0; i < fRows;
[all...]
H A DActiveSetSolver.h52 int32 fRows; member in class:EquationSystem
/haiku-fatelf/src/apps/debuganalyzer/gui/table/
H A DTable.cpp126 fRows(NULL),
134 delete[] fRows;
152 return index >= 0 && index < fRowCount ? fRows[index] : -1;
161 delete[] fRows;
162 fRows = NULL;
183 fRows = new(std::nothrow) int32[fRowCount];
184 if (fRows == NULL) {
193 fRows[index++] = fTable->_ModelIndexOfRow(row);
404 fRows.MakeEmpty();
442 BRow* row = fRows
[all...]
H A DTable.h77 int32* fRows; member in class:TableSelectionModel
175 RowList fRows; member in class:Table
/haiku-fatelf/src/libs/alm/
H A DRowColumnManager.cpp30 for (int32 i = 0; i < fRows.CountItems(); i++)
31 delete fRows.ItemAt(i)->fPrefSizeConstraint;
44 fRows.AddItem(row);
70 fRows.RemoveItem(row);
92 for (int32 i = 0; i < fRows.CountItems(); i++)
93 _UpdateConstraints(fRows.ItemAt(i));
110 for (int32 i = 0; i < fRows.CountItems(); i++) {
111 Row* row = fRows.ItemAt(i);
H A DRowColumnManager.h61 BObjectList<Row> fRows; member in class:BALM::RowColumnManager
H A DSharedSolver.cpp235 for (int32 j = layout->fRowColumnManager->fRows.CountItems() - 1;
237 Row* row = layout->fRowColumnManager->fRows.ItemAt(j);
/haiku-fatelf/src/apps/deskcalc/
H A DCalcView.cpp119 fRows(4),
152 fRows(4),
424 float sizeRow = (keypadRect.Height() + 1) / (float)fRows;
433 for (int row = 0; row < fRows; row++) {
477 BeginLineArray(((fColumns + fRows) << 1) + 1);
496 for (int row = 0; row < fRows; row++) {
504 AddLine(BPoint(0.0, sizeDisp + fRows * sizeRow),
505 BPoint(fWidth, sizeDisp + fRows * sizeRow),
517 float baselineOffset = ((fHeight - sizeDisp) / (float)fRows)
520 for (int row = 0; row < fRows; ro
[all...]
H A DCalcView.h124 int16 fRows; member in class:CalcView
/haiku-fatelf/src/kits/interface/
H A DColorControl.cpp83 fRows = 256 / fColumns;
185 float(fRows) * fCellSize + 2.0);
189 float(fRows) * fCellSize + 2.0 - 1.0);
468 int rowEnd = min_c(fRows, 2 + int(update.bottom) / int(fCellSize));
479 for (int yi = 0; yi < fRows+1; yi++) {
583 float rampHeight = float(fRows) * fCellSize / 4.0f;
636 fRows = 64;
640 fRows = 32;
644 fRows = 16;
648 fRows
[all...]
H A DColumnListView.cpp321 BRowContainer fRows; member in class:BPrivate::OutlineView
3011 RecursiveDeleteRows(&fRows, false);
3106 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3253 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3424 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
4120 fRows.RemoveItem(row);
4148 return &fRows;
4161 BRowContainer* list = (parentRow == NULL) ? &fRows : parentRow->fChildList;
4206 AddSorted(&fRows, row);
4218 if (Index < 0 || Index >= fRows
[all...]
/haiku-fatelf/src/apps/terminal/
H A DTermView.cpp441 fRows(ROWS_DEFAULT),
464 fRows(rows),
497 fRows(ROWS_DEFAULT),
512 if (archive->FindInt32("rows", (int32*)&fRows) < B_OK)
513 fRows = ROWS_DEFAULT;
538 The members fRows, fColumns, fEncoding, and fScrBufSize must
599 status_t error = fTextBuffer->Init(fColumns, fRows, fScrBufSize);
604 error = fVisibleTextBuffer->Init(fColumns, fRows + 2, 0);
621 error = fShell->Open(fRows, fColumns, modifiedShellParameters);
709 status = data->AddInt32("rows", (int32)fRows);
[all...]
H A DTermView.h247 int fRows; member in class:TermView
/haiku-fatelf/headers/os/interface/
H A DColorControl.h111 int32 fRows; member in class:BColorControl
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dconsole.cpp61 int fRows, fCols; member in class:ConsoleDevice

Completed in 507 milliseconds