headers/private/interface/ColumnListView.h
122
class BRow {
headers/private/interface/ColumnListView.h
124
BRow();
headers/private/interface/ColumnListView.h
125
BRow(float height);
headers/private/interface/ColumnListView.h
126
virtual ~BRow();
headers/private/interface/ColumnListView.h
152
BRow* fNextSelected;
headers/private/interface/ColumnListView.h
153
BRow* fPrevSelected;
headers/private/interface/ColumnListView.h
154
BRow* fParent;
headers/private/interface/ColumnListView.h
184
virtual void MouseMoved(BColumnListView* parent, BRow* row,
headers/private/interface/ColumnListView.h
187
virtual void MouseDown(BColumnListView* parent, BRow* row,
headers/private/interface/ColumnListView.h
190
virtual void MouseUp(BColumnListView* parent, BRow* row,
headers/private/interface/ColumnListView.h
262
virtual void ExpandOrCollapse(BRow* row, bool expand);
headers/private/interface/ColumnListView.h
268
BRow* FocusRow() const;
headers/private/interface/ColumnListView.h
270
void SetFocusRow(BRow* row, bool select = false);
headers/private/interface/ColumnListView.h
275
void Deselect(BRow* row);
headers/private/interface/ColumnListView.h
276
void AddToSelection(BRow* row);
headers/private/interface/ColumnListView.h
278
BRow* CurrentSelection(BRow* lastSelected = 0) const;
headers/private/interface/ColumnListView.h
314
const BRow* RowAt(int32 index, BRow *parent = 0) const;
headers/private/interface/ColumnListView.h
315
BRow* RowAt(int32 index, BRow *parent = 0);
headers/private/interface/ColumnListView.h
316
const BRow* RowAt(BPoint) const;
headers/private/interface/ColumnListView.h
317
BRow* RowAt(BPoint);
headers/private/interface/ColumnListView.h
318
bool GetRowRect(const BRow* row, BRect* _rect) const;
headers/private/interface/ColumnListView.h
319
bool FindParent(BRow* row, BRow** _parent,
headers/private/interface/ColumnListView.h
321
int32 IndexOf(BRow* row);
headers/private/interface/ColumnListView.h
322
int32 CountRows(BRow* parent = 0) const;
headers/private/interface/ColumnListView.h
323
void AddRow(BRow* row, BRow* parent = NULL);
headers/private/interface/ColumnListView.h
324
void AddRow(BRow* row, int32 index,
headers/private/interface/ColumnListView.h
325
BRow* parent = NULL);
headers/private/interface/ColumnListView.h
327
BRow* parent = NULL);
headers/private/interface/ColumnListView.h
329
void ScrollTo(const BRow* Row);
headers/private/interface/ColumnListView.h
334
void RemoveRow(BRow* row);
headers/private/interface/ColumnListView.h
336
void UpdateRow(BRow* row);
headers/private/interface/ColumnListView.h
337
bool SwapRows(int32 index1, int32 index2, BRow*
headers/private/interface/ColumnListView.h
338
parentRow1 = NULL, BRow* parentRow2 = NULL);
headers/private/interface/ColumnListView.h
341
void InvalidateRow(BRow* row);
headers/private/interface/ColumnListView.h
367
BPoint SuggestTextPosition(const BRow* row,
headers/private/interface/ColumnListView.h
370
BRect GetFieldRect(const BRow* row,
headers/private/interface/ColumnListView.h
376
LatchType type, BRow* row);
headers/private/interface/ColumnListView.h
69
class BRow;
src/apps/debuganalyzer/gui/table/AbstractTable.cpp
52
AbstractTable::AbstractColumn::MouseDown(BColumnListView* parent, BRow* row,
src/apps/debuganalyzer/gui/table/AbstractTable.cpp
81
AbstractTable::AbstractColumn::MouseUp(BColumnListView* parent, BRow* row,
src/apps/debuganalyzer/gui/table/AbstractTable.h
58
BRow* row, BField* field, BPoint point,
src/apps/debuganalyzer/gui/table/AbstractTable.h
61
BRow* row, BField* field, BPoint point,
src/apps/debuganalyzer/gui/table/AbstractTable.h
84
virtual void MouseDown(BColumnListView* parent, BRow* row,
src/apps/debuganalyzer/gui/table/AbstractTable.h
87
virtual void MouseUp(BColumnListView* parent, BRow* row,
src/apps/debuganalyzer/gui/table/Table.cpp
192
BRow* row = NULL;
src/apps/debuganalyzer/gui/table/Table.cpp
456
BRow* row = fRows.ItemAt(rowIndex);
src/apps/debuganalyzer/gui/table/Table.cpp
473
if (BRow* row = fRows.ItemAt(rowIndex))
src/apps/debuganalyzer/gui/table/Table.cpp
502
BRow* row = fRows.ItemAt(rowIndex);
src/apps/debuganalyzer/gui/table/Table.cpp
523
BRow* row = RowAt(point);
src/apps/debuganalyzer/gui/table/Table.cpp
561
Table::ColumnMouseDown(AbstractColumn* column, BRow* row, BField* field,
src/apps/debuganalyzer/gui/table/Table.cpp
582
Table::ColumnMouseUp(AbstractColumn* column, BRow* row, BField* field,
src/apps/debuganalyzer/gui/table/Table.cpp
611
BRow* row = new(std::nothrow) BRow();
src/apps/debuganalyzer/gui/table/Table.cpp
657
if (BRow* row = fRows.RemoveItemAt(i)) {
src/apps/debuganalyzer/gui/table/Table.cpp
673
if (BRow* row = fRows.ItemAt(i))
src/apps/debuganalyzer/gui/table/Table.cpp
706
for (int32 i = fromIndex; BRow* row = fRows.ItemAt(i); i++) {
src/apps/debuganalyzer/gui/table/Table.cpp
717
Table::_ModelIndexOfRow(BRow* row)
src/apps/debuganalyzer/gui/table/Table.h
149
BRow* row, BField* field,
src/apps/debuganalyzer/gui/table/Table.h
152
BRow* row, BField* field,
src/apps/debuganalyzer/gui/table/Table.h
170
typedef BObjectList<BRow> RowList;
src/apps/debuganalyzer/gui/table/Table.h
176
int32 _ModelIndexOfRow(BRow* row);
src/apps/debuganalyzer/gui/table/TreeTable.cpp
1010
TreeTable::ExpandOrCollapse(BRow* _row, bool expand)
src/apps/debuganalyzer/gui/table/TreeTable.cpp
420
class TreeTableRow : public BRow {
src/apps/debuganalyzer/gui/table/TreeTable.cpp
639
BRow* row = NULL;
src/apps/debuganalyzer/gui/table/TreeTable.cpp
869
BRow* row = RowAt(point);
src/apps/debuganalyzer/gui/table/TreeTable.cpp
911
TreeTable::ColumnMouseDown(AbstractColumn* column, BRow* _row, BField* field,
src/apps/debuganalyzer/gui/table/TreeTable.cpp
936
TreeTable::ColumnMouseUp(AbstractColumn* column, BRow* _row, BField* field,
src/apps/debuganalyzer/gui/table/TreeTable.h
209
BRow* row, BField* field,
src/apps/debuganalyzer/gui/table/TreeTable.h
212
BRow* row, BField* field,
src/apps/debuganalyzer/gui/table/TreeTable.h
235
virtual void ExpandOrCollapse(BRow* row, bool expand);
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
202
: BRow(ceilf(be_control_look->DefaultLabelSpacing() * 3.3f))
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
445
BRow* row = new TeamRow(info);
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.h
68
class TeamRow : public BRow {
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.h
69
typedef BRow Inherited;
src/apps/devices/PropertyList.cpp
21
: BRow(),
src/apps/devices/PropertyList.cpp
83
BRow *row;
src/apps/devices/PropertyList.h
25
class PropertyRow : public BRow {
src/apps/drivesetup/MainWindow.cpp
101
BRow* row = fPartitionList->RowAt(i);
src/apps/drivesetup/MainWindow.cpp
1097
BRow* _selectedRow = fListView->CurrentSelection();
src/apps/drivesetup/MainWindow.cpp
1100
BRow* _topLevelRow = _selectedRow;
src/apps/drivesetup/MainWindow.cpp
1101
BRow* parent = NULL;
src/apps/drivesetup/MainWindow.cpp
1951
MainWindow::_ColumnListViewHeight(BColumnListView* list, BRow* currentRow)
src/apps/drivesetup/MainWindow.cpp
1956
BRow* row = list->RowAt(i, currentRow);
src/apps/drivesetup/MainWindow.cpp
1970
BRow* parentRow = fListView->RowAt(0, NULL);
src/apps/drivesetup/MainWindow.cpp
503
if (BRow* row = fListView->FindRow(id)) {
src/apps/drivesetup/MainWindow.h
28
class BRow;
src/apps/drivesetup/MainWindow.h
94
BRow* currentRow);
src/apps/drivesetup/PartitionList.cpp
476
PartitionListView::ExpandOrCollapse(BRow* row, bool expand)
src/apps/drivesetup/PartitionList.h
65
class PartitionListRow : public BRow {
src/apps/drivesetup/PartitionList.h
66
typedef BRow Inherited;
src/apps/drivesetup/PartitionList.h
99
virtual void ExpandOrCollapse(BRow* row, bool expand);
src/apps/haikudepot/ui/PackageListView.cpp
1295
BRow* row = static_cast<BRow*>(addedRows.ItemAt(0));
src/apps/haikudepot/ui/PackageListView.cpp
1368
BRow* selected = CurrentSelection();
src/apps/haikudepot/ui/PackageListView.cpp
208
class PackageRow : public BRow {
src/apps/haikudepot/ui/PackageListView.cpp
209
typedef BRow Inherited;
src/apps/resedit/ResView.cpp
187
BRow *row = fListView->CurrentSelection();
src/apps/resedit/ResView.cpp
198
BRow *row = fListView->RowAt(i);
src/apps/resedit/ResView.cpp
347
ResView::UpdateRow(BRow *row)
src/apps/resedit/ResView.h
53
void UpdateRow(BRow *row);
src/apps/resedit/ResView.h
70
class ResDataRow : public BRow
src/apps/webpositive/CookieWindow.cpp
56
class CookieRow: public BRow
src/apps/webpositive/CookieWindow.cpp
62
BRow(),
src/kits/interface/ColumnListView.cpp
1003
BColumnListView::AddToSelection(BRow* row)
src/kits/interface/ColumnListView.cpp
1016
BRow*
src/kits/interface/ColumnListView.cpp
1017
BColumnListView::CurrentSelection(BRow* lastSelected) const
src/kits/interface/ColumnListView.cpp
1301
const BRow*
src/kits/interface/ColumnListView.cpp
1302
BColumnListView::RowAt(int32 Index, BRow* parentRow) const
src/kits/interface/ColumnListView.cpp
1311
BRow*
src/kits/interface/ColumnListView.cpp
1312
BColumnListView::RowAt(int32 Index, BRow* parentRow)
src/kits/interface/ColumnListView.cpp
1321
const BRow*
src/kits/interface/ColumnListView.cpp
1330
BRow*
src/kits/interface/ColumnListView.cpp
1340
BColumnListView::GetRowRect(const BRow* row, BRect* outRect) const
src/kits/interface/ColumnListView.cpp
1347
BColumnListView::FindParent(BRow* row, BRow** _parent, bool* _isVisible) const
src/kits/interface/ColumnListView.cpp
1354
BColumnListView::IndexOf(BRow* row)
src/kits/interface/ColumnListView.cpp
1361
BColumnListView::CountRows(BRow* parentRow) const
src/kits/interface/ColumnListView.cpp
1373
BColumnListView::AddRow(BRow* row, BRow* parentRow)
src/kits/interface/ColumnListView.cpp
1380
BColumnListView::AddRow(BRow* row, int32 index, BRow* parentRow)
src/kits/interface/ColumnListView.cpp
1390
BColumnListView::AddRows(BList* rows, int32 index, BRow* parent)
src/kits/interface/ColumnListView.cpp
1393
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
1404
BColumnListView::RemoveRow(BRow* row)
src/kits/interface/ColumnListView.cpp
1420
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
1427
BColumnListView::UpdateRow(BRow* row)
src/kits/interface/ColumnListView.cpp
1434
BColumnListView::SwapRows(int32 index1, int32 index2, BRow* parentRow1,
src/kits/interface/ColumnListView.cpp
1435
BRow* parentRow2)
src/kits/interface/ColumnListView.cpp
1437
BRow* row1 = NULL;
src/kits/interface/ColumnListView.cpp
1438
BRow* row2 = NULL;
src/kits/interface/ColumnListView.cpp
1488
BColumnListView::ScrollTo(const BRow* row)
src/kits/interface/ColumnListView.cpp
1509
BColumnListView::InvalidateRow(BRow* row)
src/kits/interface/ColumnListView.cpp
1670
BColumnListView::SuggestTextPosition(const BRow* row,
src/kits/interface/ColumnListView.cpp
1684
BColumnListView::GetFieldRect(const BRow* row, const BColumn* inColumn) const
src/kits/interface/ColumnListView.cpp
172
class BRowContainer : public BObjectList<BRow>
src/kits/interface/ColumnListView.cpp
1724
BColumnListView::DrawLatch(BView* view, BRect rect, LatchType position, BRow*)
src/kits/interface/ColumnListView.cpp
1873
BRow* focusRow = fOutlineView->FocusRow();
src/kits/interface/ColumnListView.cpp
277
void AddRows(BList* rows, int32 index, BRow* parentRow);
src/kits/interface/ColumnListView.cpp
278
void AddRow(BRow*, int32 index, BRow* TheRow);
src/kits/interface/ColumnListView.cpp
279
BRow* CurrentSelection(BRow* lastSelected) const;
src/kits/interface/ColumnListView.cpp
285
void ExpandOrCollapse(BRow* parent, bool expand);
src/kits/interface/ColumnListView.cpp
287
void RemoveRow(BRow*);
src/kits/interface/ColumnListView.cpp
289
void UpdateRow(BRow*);
src/kits/interface/ColumnListView.cpp
290
bool FindParent(BRow* row, BRow** _parent,
src/kits/interface/ColumnListView.cpp
292
int32 IndexOf(BRow* row);
src/kits/interface/ColumnListView.cpp
293
void Deselect(BRow*);
src/kits/interface/ColumnListView.cpp
294
void AddToSelection(BRow*);
src/kits/interface/ColumnListView.cpp
296
BRow* FocusRow() const;
src/kits/interface/ColumnListView.cpp
297
void SetFocusRow(BRow* row, bool select);
src/kits/interface/ColumnListView.cpp
298
BRow* FindRow(float ypos, int32* _indent,
src/kits/interface/ColumnListView.cpp
300
bool FindRect(const BRow* row, BRect* _rect);
src/kits/interface/ColumnListView.cpp
301
void ScrollTo(const BRow* row);
src/kits/interface/ColumnListView.cpp
327
void SelectRange(BRow* start, BRow* end);
src/kits/interface/ColumnListView.cpp
328
int32 CompareRows(BRow* row1, BRow* row2);
src/kits/interface/ColumnListView.cpp
329
int32 AddRowToParentOnly(BRow* row, int32 index,
src/kits/interface/ColumnListView.cpp
330
BRow* parent);
src/kits/interface/ColumnListView.cpp
331
int32 AddSorted(BRowContainer* list, BRow* row);
src/kits/interface/ColumnListView.cpp
3315
OutlineView::Deselect(BRow* row)
src/kits/interface/ColumnListView.cpp
3331
OutlineView::AddToSelection(BRow* row)
src/kits/interface/ColumnListView.cpp
335
bool FindVisibleRect(BRow* row, BRect* _rect);
src/kits/interface/ColumnListView.cpp
3359
BRow* row = list->RemoveItemAt(0L);
src/kits/interface/ColumnListView.cpp
336
bool RemoveRowFromSelectionOnly(BRow* row);
src/kits/interface/ColumnListView.cpp
3392
BRow* row = iterator.CurrentRow();
src/kits/interface/ColumnListView.cpp
348
BRow* fFocusRow;
src/kits/interface/ColumnListView.cpp
350
BRow* fRollOverRow;
src/kits/interface/ColumnListView.cpp
352
BRow fSelectionListDummyHead;
src/kits/interface/ColumnListView.cpp
353
BRow* fLastSelectedItem;
src/kits/interface/ColumnListView.cpp
354
BRow* fFirstSelectedItem;
src/kits/interface/ColumnListView.cpp
3544
BRow* row = iterator.CurrentRow();
src/kits/interface/ColumnListView.cpp
3712
BRow*
src/kits/interface/ColumnListView.cpp
3720
BRow* row = iterator.CurrentRow();
src/kits/interface/ColumnListView.cpp
374
BRow* fCurrentRow;
src/kits/interface/ColumnListView.cpp
3767
BRow* row = FindRow(position.y, &indent, &rowTop);
src/kits/interface/ColumnListView.cpp
3773
BRow* new_row = 0;
src/kits/interface/ColumnListView.cpp
385
BRow* fTargetRow;
src/kits/interface/ColumnListView.cpp
3926
BRow* new_row = 0;
src/kits/interface/ColumnListView.cpp
3932
BRow* row = FindRow(position.y, &indent, &top);
src/kits/interface/ColumnListView.cpp
400
BRow* CurrentRow() const;
src/kits/interface/ColumnListView.cpp
4060
BRow* target = FindRow(position.y, &indent, &top);
src/kits/interface/ColumnListView.cpp
4075
BRow* target = FindRow(position.y, &indent, &top);
src/kits/interface/ColumnListView.cpp
4204
BRow* newRow = FindRow(newRowPos, &indent, &top);
src/kits/interface/ColumnListView.cpp
4210
BRow* oldFocusRow = fFocusRow;
src/kits/interface/ColumnListView.cpp
4282
BRow*
src/kits/interface/ColumnListView.cpp
4283
OutlineView::CurrentSelection(BRow* lastSelected) const
src/kits/interface/ColumnListView.cpp
4285
BRow* row;
src/kits/interface/ColumnListView.cpp
4341
OutlineView::ExpandOrCollapse(BRow* parentRow, bool expand)
src/kits/interface/ColumnListView.cpp
4394
OutlineView::RemoveRowFromSelectionOnly(BRow* row)
src/kits/interface/ColumnListView.cpp
4408
OutlineView::RemoveRow(BRow* row)
src/kits/interface/ColumnListView.cpp
4413
BRow* parentRow = NULL;
src/kits/interface/ColumnListView.cpp
4494
BRow* parentRow = NULL;
src/kits/interface/ColumnListView.cpp
4498
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
4524
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
4575
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
4590
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
4615
BRow* row = static_cast<BRow*>(rows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
4637
OutlineView::UpdateRow(BRow* row)
src/kits/interface/ColumnListView.cpp
4641
BRow* parentRow = NULL;
src/kits/interface/ColumnListView.cpp
4679
OutlineView::AddRowToParentOnly(BRow* row, int32 index, BRow* parentRow)
src/kits/interface/ColumnListView.cpp
4723
OutlineView::AddRows(BList* addedRows, int32 index, BRow* parentRow)
src/kits/interface/ColumnListView.cpp
4737
BRow* firstRow = NULL;
src/kits/interface/ColumnListView.cpp
4740
BRow* row = static_cast<BRow*>(addedRows->ItemAt(i));
src/kits/interface/ColumnListView.cpp
4806
OutlineView::AddRow(BRow* row, int32 Index, BRow* parentRow)
src/kits/interface/ColumnListView.cpp
4920
OutlineView::AddSorted(BRowContainer* list, BRow* row)
src/kits/interface/ColumnListView.cpp
4958
OutlineView::CompareRows(BRow* row1, BRow* row2)
src/kits/interface/ColumnListView.cpp
5018
OutlineView::FindVisibleRect(BRow* row, BRect* _rect)
src/kits/interface/ColumnListView.cpp
5042
OutlineView::FindRect(const BRow* row, BRect* _rect)
src/kits/interface/ColumnListView.cpp
5061
OutlineView::ScrollTo(const BRow* row)
src/kits/interface/ColumnListView.cpp
5084
BRow* row = iterator.CurrentRow();
src/kits/interface/ColumnListView.cpp
5096
BRow* row = fSelectionListDummyHead.fNextSelected;
src/kits/interface/ColumnListView.cpp
5105
BRow*
src/kits/interface/ColumnListView.cpp
5113
OutlineView::SetFocusRow(BRow* row, bool Select)
src/kits/interface/ColumnListView.cpp
5140
BRow** items
src/kits/interface/ColumnListView.cpp
5141
= (BRow**) BObjectList<BRow>::Private(list).AsBList()->Items();
src/kits/interface/ColumnListView.cpp
5149
BRow* temp = items[step];
src/kits/interface/ColumnListView.cpp
5227
BRow* parentRow = currentEntry->list->ItemAt(index);
src/kits/interface/ColumnListView.cpp
5291
OutlineView::SelectRange(BRow* start, BRow* end)
src/kits/interface/ColumnListView.cpp
5303
BRow* temp = start;
src/kits/interface/ColumnListView.cpp
5314
BRow* row = iterator.CurrentRow();
src/kits/interface/ColumnListView.cpp
533
BColumn::MouseMoved(BColumnListView* /*parent*/, BRow* /*row*/,
src/kits/interface/ColumnListView.cpp
5336
OutlineView::FindParent(BRow* row, BRow** outParent, bool* outParentIsVisible)
src/kits/interface/ColumnListView.cpp
5345
for (BRow* currentRow = row->fParent; currentRow != NULL;
src/kits/interface/ColumnListView.cpp
5362
OutlineView::IndexOf(BRow* row)
src/kits/interface/ColumnListView.cpp
5388
for (RecursiveOutlineIterator iterator(&fRows); BRow* row =
src/kits/interface/ColumnListView.cpp
541
BColumn::MouseDown(BColumnListView* /*parent*/, BRow* /*row*/,
src/kits/interface/ColumnListView.cpp
5431
BRow*
src/kits/interface/ColumnListView.cpp
5451
BRow* currentRow = fCurrentList->ItemAt(fCurrentListIndex);
src/kits/interface/ColumnListView.cpp
549
BColumn::MouseUp(BColumnListView* /*parent*/, BRow* /*row*/, BField* /*field*/)
src/kits/interface/ColumnListView.cpp
557
BRow::BRow()
src/kits/interface/ColumnListView.cpp
571
BRow::BRow(float height)
src/kits/interface/ColumnListView.cpp
584
BRow::~BRow()
src/kits/interface/ColumnListView.cpp
597
BRow::HasLatch() const
src/kits/interface/ColumnListView.cpp
604
BRow::CountFields() const
src/kits/interface/ColumnListView.cpp
611
BRow::GetField(int32 index)
src/kits/interface/ColumnListView.cpp
618
BRow::GetField(int32 index) const
src/kits/interface/ColumnListView.cpp
625
BRow::SetField(BField* field, int32 logicalFieldIndex)
src/kits/interface/ColumnListView.cpp
640
BRow::Height() const
src/kits/interface/ColumnListView.cpp
647
BRow::IsExpanded() const
src/kits/interface/ColumnListView.cpp
654
BRow::IsSelected() const
src/kits/interface/ColumnListView.cpp
661
BRow::Invalidate()
src/kits/interface/ColumnListView.cpp
669
BRow::ValidateFields() const
src/kits/interface/ColumnListView.cpp
677
BRow::ValidateField(const BField* field, int32 logicalFieldIndex) const
src/kits/interface/ColumnListView.cpp
916
BColumnListView::ExpandOrCollapse(BRow* row, bool Open)
src/kits/interface/ColumnListView.cpp
960
BRow*
src/kits/interface/ColumnListView.cpp
975
BColumnListView::SetFocusRow(BRow* row, bool Select)
src/kits/interface/ColumnListView.cpp
996
BColumnListView::Deselect(BRow* row)
src/kits/tracker/infowindow/AttributesView.cpp
498
BRow* first = fListView->RowAt(0, NULL);
src/kits/tracker/infowindow/AttributesView.cpp
72
BRow* row = new BRow;
src/preferences/notifications/NotificationsView.cpp
41
BRow(),
src/preferences/notifications/NotificationsView.h
27
class AppRow : public BRow {
src/preferences/repositories/RepoRow.cpp
24
BRow(),
src/preferences/repositories/RepoRow.h
23
class RepoRow : public BRow {
src/preferences/repositories/RepositoriesView.cpp
541
BRow* row = fListView->RowAt((int32)0, NULL);
src/preferences/shortcuts/PopUpColumn.cpp
39
PopUpColumn::MouseDown(BColumnListView* parent, BRow* row, BField* field,
src/preferences/shortcuts/PopUpColumn.h
24
void MouseDown(BColumnListView* parent, BRow* row,
src/preferences/shortcuts/ShortcutsSpec.cpp
128
BRow(),
src/preferences/shortcuts/ShortcutsSpec.cpp
144
BRow(),
src/preferences/shortcuts/ShortcutsSpec.cpp
166
BRow(),
src/preferences/shortcuts/ShortcutsSpec.h
31
class ShortcutsSpec : public BRow, public BArchivable {
src/preferences/shortcuts/ShortcutsWindow.cpp
449
BRow* curSel = fColumnListView->CurrentSelection();
src/preferences/shortcuts/ShortcutsWindow.cpp
656
BRow* item = fColumnListView->CurrentSelection();
src/preferences/shortcuts/ShortcutsWindow.h
90
BRow* fSelectedRow;
src/preferences/sounds/HEventList.cpp
104
BRow* row;
src/preferences/sounds/HEventList.cpp
28
BRow(),
src/preferences/sounds/HEventList.h
24
class HEventRow : public BRow {
src/tests/kits/opengl/glinfo/CapabilitiesView.cpp
111
BRow *row;
src/tests/kits/opengl/glinfo/CapabilitiesView.cpp
122
BRow*
src/tests/kits/opengl/glinfo/CapabilitiesView.cpp
125
BRow* row = new BRow();
src/tests/kits/opengl/glinfo/CapabilitiesView.cpp
136
BRow*
src/tests/kits/opengl/glinfo/CapabilitiesView.cpp
139
BRow* row = new BRow();
src/tests/kits/opengl/glinfo/CapabilitiesView.h
21
BRow* _CreateCapabilitiesRow(GLenum capability,
src/tests/kits/opengl/glinfo/CapabilitiesView.h
23
BRow* _CreateConvolutionCapabilitiesRow();
src/tests/kits/opengl/glinfo/ExtensionsView.cpp
59
BRow *row;
src/tests/kits/opengl/glinfo/ExtensionsView.cpp
83
BRow* row = new BRow();