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 108 int TableExample::RowCount() {
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_table_model.cc 185 int TemplateURLTableModel::RowCount() {
190 DCHECK(row >= 0 && row < RowCount());
209 DCHECK(row >= 0 && row < RowCount());
246 DCHECK(row >= 0 && row < RowCount());
270 DCHECK(index >= 0 && index <= RowCount());
288 DCHECK(index >= 0 && index <= RowCount());
302 DCHECK(index >= 0 && index < RowCount());
335 if (index < 0 || index >= RowCount()) {
keyword_editor_controller_unittest.cc 130 int original_row_count = table_model()->RowCount();
139 ASSERT_EQ(original_row_count + 1, table_model()->RowCount());
247 int original_row_count = table_model()->RowCount();
259 ASSERT_EQ(original_row_count + 1, table_model()->RowCount());
template_url_table_model.h 49 virtual int RowCount() OVERRIDE;
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 102 DCHECK(insert_before >= 0 && insert_before <= RowCount());
151 DCHECK(index >= 0 && index <= RowCount());
160 DCHECK(index >= 0 && index < RowCount());
175 while (RowCount())
203 int CustomHomePagesTableModel::RowCount() {
209 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 106 int page_count = startup_custom_pages_table_model_->RowCount();
145 selected_index >= startup_custom_pages_table_model_->RowCount()) {
161 int row_count = startup_custom_pages_table_model_->RowCount();
177 if (index < 0 || index > startup_custom_pages_table_model_->RowCount()) {
search_engine_manager_handler.cc 149 int engine_count = list_controller_->table_model()->RowCount();
216 if (index < 0 || index >= list_controller_->table_model()->RowCount())
232 if (index < 0 || index >= list_controller_->table_model()->RowCount())
250 if (index < -1 || index >= list_controller_->table_model()->RowCount())
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.h 69 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 99 int HungPagesTableModel::RowCount() {
104 DCHECK(row >= 0 && row < RowCount());
116 DCHECK(row >= 0 && row < RowCount());
129 range->length = RowCount();
273 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 94 int32_t RowCount();

Completed in 640 milliseconds

1 2