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

1 2

  /external/chromium/chrome/browser/
language_order_table_model.cc 43 DCHECK(row >= 0 && row < RowCount());
60 observer_->OnItemsAdded(RowCount() - 1, 1);
65 DCHECK(index >= 0 && index < RowCount());
88 if (index < 0 || index >= RowCount() - 1)
92 if (index == RowCount() - 1)
97 observer_->OnItemsChanged(0, RowCount());
107 observer_->OnItemsChanged(0, RowCount());
114 int LanguageOrderTableModel::RowCount() {
plugin_exceptions_table_model_unittest.cc 45 EXPECT_LT(start, model_->RowCount() + 1);
156 EXPECT_EQ(3, table_model_->RowCount());
168 EXPECT_EQ(2, table_model_->RowCount());
182 EXPECT_EQ(2, table_model_->RowCount());
192 EXPECT_EQ(3, table_model_->RowCount());
201 EXPECT_EQ(1, table_model_->RowCount());
214 EXPECT_EQ(0, table_model_->RowCount());
language_order_table_model.h 49 virtual int RowCount() OVERRIDE;
possible_url_model.h 43 virtual int RowCount() OVERRIDE;
custom_home_pages_table_model.cc 70 DCHECK(index >= 0 && index <= RowCount());
79 DCHECK(index >= 0 && index < RowCount());
102 while (RowCount())
130 int CustomHomePagesTableModel::RowCount() {
136 DCHECK(row >= 0 && row < RowCount());
141 DCHECK(row >= 0 && row < RowCount());
possible_url_model.cc 107 int PossibleURLModel::RowCount() {
112 if (row < 0 || row >= RowCount()) {
120 if (row < 0 || row >= RowCount()) {
128 if (row < 0 || row >= RowCount()) {
149 if (row < 0 || row >= RowCount()) {
custom_home_pages_table_model.h 50 virtual int RowCount() OVERRIDE;
plugin_exceptions_table_model.h 37 virtual int RowCount() OVERRIDE;
plugin_exceptions_table_model.cc 77 int PluginExceptionsTableModel::RowCount() {
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model_unittest.cc 58 EXPECT_EQ(0, model_->RowCount());
65 EXPECT_EQ(5, model_->RowCount());
68 EXPECT_EQ(0, model_->RowCount());
76 EXPECT_EQ(5, model_->RowCount());
106 EXPECT_EQ(5, model_->RowCount());
114 EXPECT_EQ(3, model_->RowCount());
125 EXPECT_EQ(0, model_->RowCount());
notification_exceptions_table_model.h 29 virtual int RowCount() OVERRIDE;
notification_exceptions_table_model.cc 69 int NotificationExceptionsTableModel::RowCount() {
  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 24 virtual int RowCount() const = 0;
task_manager_mac.h 87 virtual int RowCount() const;
  /external/chromium/chrome/browser/geolocation/
geolocation_exceptions_table_model_unittest.cc 47 EXPECT_EQ(3, model_->RowCount());
56 EXPECT_EQ(0, model_->RowCount());
64 EXPECT_EQ(1, model_->RowCount());
75 EXPECT_EQ(3, model_->RowCount());
99 EXPECT_EQ(3, model_->RowCount());
106 EXPECT_EQ(0, model_->RowCount());
121 EXPECT_EQ(0, model_->RowCount());
geolocation_exceptions_table_model.h 41 virtual int RowCount() OVERRIDE;
geolocation_exceptions_table_model.cc 130 int old_row_count = RowCount();
137 int GeolocationExceptionsTableModel::RowCount() {
190 DCHECK(row1 >= 0 && row1 < RowCount() &&
191 row2 >= 0 && row2 < RowCount());
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.cc 171 int TemplateURLTableModel::RowCount() {
176 DCHECK(row >= 0 && row < RowCount());
202 DCHECK(row >= 0 && row < RowCount());
233 DCHECK(row >= 0 && row < RowCount());
257 DCHECK(index >= 0 && index <= RowCount());
271 DCHECK(index >= 0 && index <= RowCount());
287 DCHECK(index >= 0 && index < RowCount());
326 if (index < 0 || index >= RowCount()) {
template_url_table_model.h 45 virtual int RowCount() OVERRIDE;
keyword_editor_controller.cc 49 const int new_index = table_model_->RowCount();
keyword_editor_controller_unittest.cc 133 ASSERT_EQ(1, table_model()->RowCount());
256 ASSERT_EQ(1, table_model()->RowCount());
  /external/chromium/chrome/browser/history/
text_database_unittest.cc 52 int RowCount(TextDatabase* db) {
73 EXPECT_EQ(3, RowCount(db));
169 EXPECT_EQ(3, RowCount(db.get()));
173 EXPECT_EQ(2, RowCount(db.get()));
180 EXPECT_EQ(2, RowCount(db.get()));
182 EXPECT_EQ(1, RowCount(db.get()));
  /external/chromium/chrome/browser/ui/webui/options/
search_engine_manager_handler.cc 123 int engine_count = list_controller_->table_model()->RowCount();
178 if (index < 0 || index >= list_controller_->table_model()->RowCount())
190 if (index < 0 || index >= list_controller_->table_model()->RowCount())
204 if (index < -1 || index >= list_controller_->table_model()->RowCount())
browser_options_handler.cc 319 int page_count = startup_custom_pages_table_model_->RowCount();
367 selected_index >= startup_custom_pages_table_model_->RowCount()) {
383 int index = startup_custom_pages_table_model_->RowCount();
397 if (index < 0 || index > startup_custom_pages_table_model_->RowCount()) {
  /external/chromium/chrome/browser/ui/views/
hung_renderer_view.cc 51 virtual int RowCount();
90 int HungPagesTableModel::RowCount() {
95 DCHECK(row >= 0 && row < RowCount());
107 DCHECK(row >= 0 && row < RowCount());
119 range->length = RowCount();

Completed in 741 milliseconds

1 2