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

/haiku/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/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/src/kits/shared/
H A DTextTable.cpp136 fRows(100, true)
168 return fRows.CountItems();
175 BStringList* row = fRows.ItemAt(rowIndex);
186 while (rowIndex >= fRows.CountItems()) {
188 if (!fRows.AddItem(row)) {
195 BStringList* row = fRows.ItemAt(rowIndex);
215 int32 rowCount = fRows.CountItems();
217 BStringList* row = fRows.ItemAt(rowIndex);
265 BStringList* row = fRows.ItemAt(rowIndex);
/haiku/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/src/apps/pairs/
H A DPairsView.h44 int32 Rows() const { return fRows; };
62 uint8 fRows; member in class:PairsView
H A DPairsView.cpp44 fRows(rows),
138 int32 x = i % fRows * (fIconSize + spacing) + spacing;
256 int32 x = i % fRows * (fIconSize + spacing) + spacing;
271 fPositionX[i] = fRandomPosition[i] % fRows * (fIconSize + spacing) + spacing;
/haiku/src/apps/debuganalyzer/gui/table/
H A DTable.cpp143 fRows(NULL),
151 delete[] fRows;
169 return index >= 0 && index < fRowCount ? fRows[index] : -1;
178 delete[] fRows;
179 fRows = NULL;
200 fRows = new(std::nothrow) int32[fRowCount];
201 if (fRows == NULL) {
210 fRows[index++] = fTable->_ModelIndexOfRow(row);
418 fRows.MakeEmpty();
456 BRow* row = fRows
[all...]
H A DTable.h79 int32* fRows; member in class:TableSelectionModel
181 RowList fRows; member in class:Table
/haiku/headers/private/shared/
H A DTextTable.h41 RowList fRows; member in class:BPrivate::TextTable
/haiku/src/kits/interface/
H A DColorControl.cpp97 fRows = 256 / fColumns;
207 fPaletteFrame.Set(0, 0, fColumns * fCellSize, fRows * fCellSize);
215 float rampHeight = (float)(fRows * fCellSize / kRampCount);
445 int rowEnd = min_c(fRows, 2 + int(updateRect.bottom)
456 for (int yi = 0; yi < fRows + 1; yi++) {
589 float rampHeight = (float)(fRows * fCellSize / kRampCount);
684 fRows = 64;
689 fRows = 32;
694 fRows = 16;
699 fRows
[all...]
H A DColumnListView.cpp334 BRowContainer fRows; member in class:BPrivate::OutlineView
3248 RecursiveDeleteRows(&fRows, false);
3343 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3490 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
3661 for (RecursiveOutlineIterator iterator(&fRows); iterator.CurrentRow();
4390 fRows.RemoveItem(row);
4418 return &fRows;
4431 BRowContainer* list = (parentRow == NULL) ? &fRows : parentRow->fChildList;
4476 AddSorted(&fRows, row);
4488 if (Index < 0 || Index >= fRows
[all...]
/haiku/src/apps/deskcalc/
H A DCalcView.cpp198 fRows(4),
231 fRows(4),
543 float sizeRow = (keypadRect.Height() + 1) / (float)fRows;
551 for (int row = 0; row < fRows; row++) {
627 float sizeRow = (fHeight - sizeDisp) / (float)fRows;
635 && (gridRow >= 0) && (gridRow < fRows)) {
654 int keys = fRows * fColumns;
705 int keys = fRows * fColumns;
902 ret = archive->AddInt16("rows", fRows);
1034 fRows
[all...]
H A DCalcView.h121 int16 fRows; member in class:CalcView
/haiku/src/apps/terminal/
H A DTermView.cpp170 fRows(ROWS_DEFAULT),
194 fRows(rows),
228 fRows(ROWS_DEFAULT),
244 if (archive->FindInt32("rows", (int32*)&fRows) < B_OK)
245 fRows = ROWS_DEFAULT;
270 The members fRows, fColumns, fEncoding, and fScrBufSize must
346 status_t error = fTextBuffer->Init(fColumns, fRows, fScrBufSize);
351 error = fVisibleTextBuffer->Init(fColumns, fRows + 2, 0);
365 error = fShell->Open(fRows, fColumns, modifiedShellParameters);
466 status = data->AddInt32("rows", (int32)fRows);
[all...]
H A DTermView.h307 int fRows; member in class:TermView
H A DTermViewStates.cpp379 fView->_ScrollTo(fView->fScrollOffset - fView->fFontHeight * fView->fRows, true);
388 fView->_ScrollTo(fView->fScrollOffset + fView->fFontHeight * fView->fRows, true);
/haiku/headers/os/interface/
H A DColorControl.h119 int32 fRows; member in class:BColorControl
/haiku/src/system/boot/platform/amiga_m68k/
H A Dconsole.cpp61 int fRows, fCols; member in class:ConsoleDevice

Completed in 120 milliseconds