HomeSort by relevance Sort by last modified time
    Searched refs:RowCount (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 25 virtual int RowCount() const = 0;
task_manager_mac.h 83 virtual int RowCount() const OVERRIDE;
  /external/chromium_org/ui/views/controls/table/
test_table_model.h 17 virtual int RowCount() OVERRIDE;
test_table_model.cc 21 int TestTableModel::RowCount() {
table_view.cc 180 int TableView::RowCount() const {
181 return model_ ? model_->RowCount() : 0;
280 DCHECK_LT(model_index, RowCount()) << " out of bounds model_index " <<
289 DCHECK_LT(view_index, RowCount()) << " out of bounds view_index " <<
325 return gfx::Size(width, RowCount() * row_height_);
335 if (event.IsControlDown() && !single_selection_ && RowCount()) {
338 for (int i = 0; i < RowCount(); ++i)
346 if (RowCount())
351 if (RowCount())
352 SelectByViewIndex(RowCount() - 1)
    [all...]
table_utils.cc 28 for (int i = 0, row_count = model->RowCount(); i < row_count; ++i) {
table_view.h 113 int RowCount() const;
  /external/chromium_org/ui/base/models/
table_model.cc 72 DCHECK(row1 >= 0 && row1 < RowCount() &&
73 row2 >= 0 && row2 < RowCount());
table_model.h 36 virtual int RowCount() = 0;
  /external/chromium_org/ui/views/examples/
table_example.h 42 virtual int RowCount() OVERRIDE;
table_example.cc 106 int TableExample::RowCount() {
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_table_model.cc 176 int TemplateURLTableModel::RowCount() {
181 DCHECK(row >= 0 && row < RowCount());
200 DCHECK(row >= 0 && row < RowCount());
237 DCHECK(row >= 0 && row < RowCount());
261 DCHECK(index >= 0 && index <= RowCount());
279 DCHECK(index >= 0 && index <= RowCount());
293 DCHECK(index >= 0 && index < RowCount());
326 if (index < 0 || index >= RowCount()) {
keyword_editor_controller_unittest.cc 133 int original_row_count = table_model()->RowCount();
142 ASSERT_EQ(original_row_count + 1, table_model()->RowCount());
250 int original_row_count = table_model()->RowCount();
262 ASSERT_EQ(original_row_count + 1, table_model()->RowCount());
template_url_table_model.h 50 virtual int RowCount() OVERRIDE;
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 101 DCHECK(insert_before >= 0 && insert_before <= RowCount());
150 DCHECK(index >= 0 && index <= RowCount());
159 DCHECK(index >= 0 && index < RowCount());
174 while (RowCount())
202 int CustomHomePagesTableModel::RowCount() {
208 DCHECK(row >= 0 && row < RowCount());
custom_home_pages_table_model.h 58 virtual int RowCount() OVERRIDE;
  /external/chromium_org/chrome/browser/ui/webui/options/
startup_pages_handler.cc 114 int page_count = startup_custom_pages_table_model_->RowCount();
153 selected_index >= startup_custom_pages_table_model_->RowCount()) {
169 int row_count = startup_custom_pages_table_model_->RowCount();
185 if (index < 0 || index > startup_custom_pages_table_model_->RowCount()) {
search_engine_manager_handler.cc 149 int engine_count = list_controller_->table_model()->RowCount();
220 if (index < 0 || index >= list_controller_->table_model()->RowCount())
236 if (index < 0 || index >= list_controller_->table_model()->RowCount())
254 if (index < -1 || index >= list_controller_->table_model()->RowCount())
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.h 70 int RowCount() const;
accessibility_tree_formatter_android.cc 103 dict->SetInteger("row_count", android_node->RowCount());
  /external/chromium_org/chrome/browser/ui/views/
hung_renderer_view.cc 94 int HungPagesTableModel::RowCount() {
99 DCHECK(row >= 0 && row < RowCount());
111 DCHECK(row >= 0 && row < RowCount());
124 range->length = RowCount();
268 if (hung_pages_table_model_->RowCount() == 0 ||
hung_renderer_view.h 51 virtual int RowCount() OVERRIDE;
ssl_client_certificate_selector.cc 41 virtual int RowCount() OVERRIDE;
63 int CertificateSelectorTableModel::RowCount() {
  /external/llvm/include/llvm/CodeGen/PBQP/
RegAllocSolver.h 49 unsigned RowCount = 0;
52 ++RowCount;
58 WorstRow = std::max(WorstRow, RowCount);
  /external/chromium_org/content/shell/renderer/test_runner/
web_ax_object_proxy.h 95 int32_t RowCount();

Completed in 2001 milliseconds

1 2