HomeSort by relevance Sort by last modified time
    Searched full:tableview (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium_org/ui/views/controls/table/
table_view.cc 73 struct TableView::SortHelper {
74 explicit SortHelper(TableView* table) : table(table) {}
80 TableView* table;
86 struct TableView::GroupSortHelper {
87 explicit GroupSortHelper(TableView* table) : table(table) {}
100 TableView* table;
104 TableView::VisibleColumn::VisibleColumn() : x(0), width(0) {}
106 TableView::VisibleColumn::~VisibleColumn() {}
108 TableView::PaintRegion::PaintRegion()
115 TableView::PaintRegion::~PaintRegion() {
    [all...]
table_view_observer.h 12 class TableView;
15 // TableViewObserver is notified about the TableView selection.
table_header.h 14 class TableView;
25 explicit TableHeader(TableView* table);
63 TableView* table_;
table_grouper.h 15 // TableGrouper is used by TableView to group a set of rows and treat them
table_utils.h 19 class TableView;
53 int GetClosestVisibleColumnIndex(const TableView* table, int x);
table_view.h 18 // A TableView is a view that displays multiple rows with any number of columns.
19 // TableView is driven by a TableModel. The model returns the contents
21 // TableView of changes to the model so that the display may be updated
24 // TableView itself has an observer that is notified when the selection
51 class VIEWS_EXPORT TableView
89 TableView(ui::TableModel* model,
93 virtual ~TableView();
108 // Sets the TableGrouper. TableView does not own |grouper| (common use case is
112 // Returns the number of rows in the TableView.
343 DISALLOW_COPY_AND_ASSIGN(TableView);
    [all...]
  /external/chromium_org/third_party/skia/src/views/mac/
SkOptionsTableView.mm 146 - (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
150 - (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
151 int columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
164 - (NSCell *)tableView:(NSTableView *)tableView dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
166 int columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
175 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
176 int columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]]
    [all...]
  /external/skia/src/views/mac/
SkOptionsTableView.mm 146 - (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
150 - (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
151 int columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
164 - (NSCell *)tableView:(NSTableView *)tableView dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
166 int columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]];
175 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
176 int columnIndex = [tableView columnWithIdentifier:[tableColumn identifier]]
    [all...]
  /external/chromium_org/ui/oak/
oak_window.h 13 class TableView;
57 scoped_ptr<views::TableView> details_;
  /external/chromium/chrome/browser/ui/cocoa/
task_manager_mac_unittest.mm 62 NSTableView* table = [controller tableView];
69 cell = [controller tableView:table dataCellForTableColumn:title_column row:0];
71 cell = [controller tableView:table dataCellForTableColumn:title_column row:1];
73 cell = [controller tableView:table dataCellForTableColumn:title_column row:2];
95 NSTableView* table = [controller tableView];
table_model_array_controller.mm 180 if ([self tableView:nil isGroupRow:row]) {
222 - (BOOL)tableView:(NSTableView*)tableView isGroupRow:(NSInteger)row {
227 - (NSIndexSet*)tableView:(NSTableView*)tableView
233 if ([self tableView:tableView isGroupRow:i]) {
237 ![self tableView:tableView isGroupRow:row])
task_manager_mac.mm 195 - (NSTableView*)tableView {
386 - (void) tableView:(NSTableView*)tableView
397 ![tableView isRowSelected:row]) {
399 if ((row % 2) == 1 && [tableView usesAlternatingRowBackgroundColors]) {
417 - (NSInteger)numberOfRowsInTableView:(NSTableView*)tableView {
418 DCHECK(tableView == tableView_ || tableView_ == nil);
496 - (id)tableView:(NSTableView*)tableView
500 // in |tableView:dataCellForTableColumn:row:| below
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
task_manager_mac_unittest.mm 69 NSTableView* table = [controller tableView];
76 cell = [controller tableView:table dataCellForTableColumn:title_column row:0];
78 cell = [controller tableView:table dataCellForTableColumn:title_column row:1];
80 cell = [controller tableView:table dataCellForTableColumn:title_column row:2];
102 NSTableView* table = [controller tableView];
task_manager_mac.mm 196 - (NSTableView*)tableView {
394 - (NSInteger)numberOfRowsInTableView:(NSTableView*)tableView {
395 DCHECK(tableView == tableView_ || tableView_ == nil);
405 - (id)tableView:(NSTableView*)tableView
409 // in |tableView:dataCellForTableColumn:row:| below.
418 - (NSCell*)tableView:(NSTableView*)tableView
439 - (void) tableView:(NSTableView*)tableView
    [all...]
  /external/chromium_org/ui/views/examples/
table_example.h 26 class TableView;
62 TableView* table_;
  /external/chromium_org/chrome/browser/ui/views/
ssl_client_certificate_selector.h 32 class TableView;
86 views::TableView* table_;
  /external/chromium_org/ui/app_list/cocoa/
apps_search_results_controller.h 58 - (NSTableView*)tableView;
apps_search_results_controller_unittest.mm 85 NSTableView* table_view = [apps_search_results_controller_ tableView];
112 [[apps_search_results_controller_ tableView] numberOfRows]);
181 NSTableView* table_view = [apps_search_results_controller_ tableView];
214 NSTableView* table_view = [apps_search_results_controller_ tableView];
255 NSTableView* table_view = [apps_search_results_controller_ tableView];
  /external/chromium_org/ui/base/models/
table_model.h 22 // The model driving the TableView.
42 // column before the text. This is only used when the TableView was created
55 // Returns true if the TableView has groups. Groups provide a way to visually
71 // Sets the observer for the model. The TableView should NOT take ownership
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
AllocTrackerView.java 23 public class AllocTrackerView extends TableView {
HeapView.java 23 public class HeapView extends TableView {
NativeHeapView.java 23 public class NativeHeapView extends TableView {
NetworkStatisticsView.java 23 public class NetworkStatisticsView extends TableView {
ThreadView.java 23 public class ThreadView extends TableView {
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.h 23 // KeywordEditorView to show the keywords in a TableView.
29 // each row in the tableview. Each ModelEntry wraps a TemplateURL, providing

Completed in 3245 milliseconds

1 2 3