HomeSort by relevance Sort by last modified time
    Searched defs:RowCount (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/ui/views/controls/table/
test_table_model.cc 21 int TestTableModel::RowCount() {
table_view_unittest.cc 69 virtual int RowCount() OVERRIDE;
114 int TestTableModel2::RowCount() {
133 for (int i = 0; i < table->RowCount(); ++i) {
144 for (int i = 0; i < table->RowCount(); ++i) {
table_view.cc 179 int TableView::RowCount() const {
180 return model_ ? model_->RowCount() : 0;
279 DCHECK_LT(model_index, RowCount()) << " out of bounds model_index " <<
288 DCHECK_LT(view_index, RowCount()) << " out of bounds view_index " <<
324 return gfx::Size(width, RowCount() * row_height_);
334 if (event.IsControlDown() && !single_selection_ && RowCount()) {
337 for (int i = 0; i < RowCount(); ++i)
345 if (RowCount())
350 if (RowCount())
351 SelectByViewIndex(RowCount() - 1)
    [all...]
  /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.cc 77 int PluginExceptionsTableModel::RowCount() {
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()) {
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model.cc 69 int NotificationExceptionsTableModel::RowCount() {
  /external/chromium_org/ui/views/examples/
table_example.cc 106 int TableExample::RowCount() {
  /external/chromium/chrome/browser/geolocation/
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/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_org/chrome/browser/
custom_home_pages_table_model.cc 100 DCHECK(insert_before >= 0 && insert_before <= RowCount());
149 DCHECK(index >= 0 && index <= RowCount());
158 DCHECK(index >= 0 && index < RowCount());
175 while (RowCount())
203 int CustomHomePagesTableModel::RowCount() {
209 DCHECK(row >= 0 && row < RowCount());
  /external/chromium_org/ui/oak/
oak_aura_window_display.cc 96 int OakAuraWindowDisplay::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()) {
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_table_model.cc 182 int TemplateURLTableModel::RowCount() {
187 DCHECK(row >= 0 && row < RowCount());
206 DCHECK(row >= 0 && row < RowCount());
243 DCHECK(row >= 0 && row < RowCount());
267 DCHECK(index >= 0 && index <= RowCount());
285 DCHECK(index >= 0 && index <= RowCount());
298 DCHECK(index >= 0 && index < RowCount());
331 if (index < 0 || index >= RowCount()) {
  /external/chromium_org/chrome/browser/ui/views/
hung_renderer_view.cc 121 int HungPagesTableModel::RowCount() {
126 DCHECK(row >= 0 && row < RowCount());
138 DCHECK(row >= 0 && row < RowCount());
151 range->length = RowCount();
293 if (hung_pages_table_model_->RowCount() == 0 ||
ssl_client_certificate_selector.cc 60 virtual int RowCount() OVERRIDE;
82 int CertificateSelectorTableModel::RowCount() {
task_manager_view.cc 77 virtual int RowCount() OVERRIDE;
100 int TaskManagerTableModel::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();
task_manager_view.cc 66 int RowCount() OVERRIDE;
87 int TaskManagerTableModel::RowCount() {
720 int row_count = tab_table_->RowCount();
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.cc 481 int BrowserAccessibilityAndroid::RowCount() const {

Completed in 565 milliseconds