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

1 2

  /external/chromium_org/chrome/browser/sync/test/integration/performance/
sessions_sync_perf_test.cc 39 int GetTabCount(int profile);
82 int SessionsSyncPerfTest::GetTabCount(int profile) {
125 ASSERT_EQ(kNumTabs, GetTabCount(0));
126 ASSERT_EQ(kNumTabs, GetTabCount(1));
131 ASSERT_EQ(kNumTabs, GetTabCount(0));
132 ASSERT_EQ(kNumTabs, GetTabCount(1));
138 ASSERT_EQ(1, GetTabCount(0));
139 ASSERT_EQ(0, GetTabCount(1));
  /external/chromium_org/chrome/browser/sync/glue/
synced_window_delegate.h 40 virtual int GetTabCount() const = 0;
synced_window_delegate_android.h 27 virtual int GetTabCount() const OVERRIDE;
synced_window_delegate_android.cc 54 int SyncedWindowDelegateAndroid::GetTabCount() const {
55 return tab_model_->GetTabCount();
  /external/chromium_org/chrome/browser/ui/sync/
browser_synced_window_delegate.h 28 virtual int GetTabCount() const OVERRIDE;
browser_synced_window_delegate.cc 73 int BrowserSyncedWindowDelegate::GetTabCount() const {
  /external/chromium_org/chrome/browser/ui/android/tab_model/
tab_model.h 38 virtual int GetTabCount() const = 0;
tab_model_list.cc 54 for (int index = 0; index < model->GetTabCount(); index++) {
78 if ((*i)->IsOffTheRecord() && (*i)->GetTabCount() > 0)
tab_model_base.h 38 virtual int GetTabCount() const OVERRIDE;
tab_model_unittest.cc 32 virtual int GetTabCount() const OVERRIDE { return 0; }
tab_model_base.cc 56 int TabModelBase::GetTabCount() const {
  /external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane.h 35 int GetTabCount();
tabbed_pane_unittest.cc 76 EXPECT_EQ(i + 1, tabbed_pane->GetTabCount());
81 for (int i = 0; i < tabbed_pane->GetTabCount(); ++i) {
tabbed_pane.cc 252 int TabbedPane::GetTabCount() {
269 DCHECK(index >= 0 && index <= GetTabCount());
281 DCHECK(index >= 0 && index < GetTabCount());
345 const int tab_count = GetTabCount();
  /external/chromium_org/ui/views/examples/
tabbed_pane_example.cc 65 if (tabbed_pane_->GetTabCount() > 1)
78 tabbed_pane_->GetTabCount(),
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_delegate.h 39 virtual int GetTabCount() const = 0;
tab_restore_service_helper.cc 129 for (int i = 0; i < delegate->GetTabCount(); ++i) {
133 for (int tab_index = 0; tab_index < delegate->GetTabCount(); ++tab_index) {
249 delegate->GetTabCount(),
486 if (tab_index < 0 || tab_index > delegate->GetTabCount() ||
488 tab_index = delegate->GetTabCount();
  /external/chromium_org/chrome/browser/ui/
browser_tab_restore_service_delegate.h 27 virtual int GetTabCount() const OVERRIDE;
browser_tab_restore_service_delegate.cc 27 int BrowserTabRestoreServiceDelegate::GetTabCount() const {
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_builder_test_helper.h 42 int GetTabCount(int session_index, int window_index);
recent_tabs_builder_test_helper.cc 108 for (int t = 0; t < GetTabCount(session_index, w); ++t)
151 int RecentTabsBuilderTestHelper::GetTabCount(int session_index,
192 for (int t = 0; t < GetTabCount(s, w); ++t) {
233 ASSERT_EQ(GetTabCount(s, w), static_cast<int>(windows[w]->tabs.size()));
242 for (int t = 0; t < GetTabCount(s, w); ++t) {
278 for (int i = 0; i < GetTabCount(session_index, window_index); ++i)
  /external/chromium_org/chrome/browser/chromeos/memory/
oom_priority_manager.h 107 int GetTabCount() const;
oom_priority_manager.cc 325 "Tabs.Discard.TabCount", GetTabCount(), 1, 100, 50);
412 int OomPriorityManager::GetTabCount() const {
  /external/chromium_org/chrome/browser/android/
dev_tools_server.cc 199 for (int i = 0; i < model->GetTabCount(); ++i) {
333 for (int i = 0; i < model->GetTabCount(); ++i) {
  /external/chromium_org/chrome/browser/ui/webui/memory_internals/
memory_internals_proxy.cc 90 for (int i = 0; i < model->GetTabCount(); ++i)
214 for (int i = 0; i < model->GetTabCount(); ++i)

Completed in 452 milliseconds

1 2