OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetTabAt
(Results
1 - 25
of
28
) sorted by null
1
2
/external/chromium_org/chrome/browser/sync/glue/
synced_window_delegate.h
60
virtual SyncedTabDelegate*
GetTabAt
(int index) const = 0;
synced_window_delegate_android.cc
79
SyncedTabDelegate* SyncedWindowDelegateAndroid::
GetTabAt
(int index) const {
81
TabAndroid* tab = tab_model_->
GetTabAt
(index);
86
SyncedTabDelegate* tab =
GetTabAt
(index);
synced_window_delegate_android.h
33
virtual SyncedTabDelegate*
GetTabAt
(int index) const OVERRIDE;
/external/chromium_org/chrome/browser/ui/sync/
browser_synced_window_delegate.cc
46
browser_sync::SyncedTabDelegate* current =
GetTabAt
(i);
55
browser_sync::SyncedTabDelegate* BrowserSyncedWindowDelegate::
GetTabAt
(
62
return
GetTabAt
(index)->GetSessionId();
browser_synced_window_delegate.h
35
virtual browser_sync::SyncedTabDelegate*
GetTabAt
(int index) const OVERRIDE;
/external/chromium/chrome/browser/ui/views/tabs/
tab_controller.h
65
virtual BaseTab*
GetTabAt
(BaseTab* tab,
base_tab_strip.h
134
virtual BaseTab*
GetTabAt
(BaseTab* tab,
base_tab.cc
337
BaseTab* closest_tab = controller()->
GetTabAt
(this, event.location());
base_tab_strip.cc
368
BaseTab* BaseTabStrip::
GetTabAt
(BaseTab* tab,
/external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane.h
64
Tab*
GetTabAt
(int index);
tabbed_pane.cc
212
Tab* selected_tab = tabbed_pane_->
GetTabAt
(selected_tab_index);
255
NULL :
GetTabAt
(selected_tab_index())->contents();
282
GetTabAt
(selected_tab_index())->SetSelected(false);
285
Tab* tab =
GetTabAt
(index);
315
Tab* TabbedPane::
GetTabAt
(int index) {
/external/chromium_org/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc
181
TabGtk* tab = tabstrip->
GetTabAt
(index);
319
if (tabstrip_->
GetTabAt
(index)->mini())
322
if (tabstrip_->
GetTabAt
(index)->IsActive()) {
373
TabGtk* tab = tabstrip_->
GetTabAt
(index);
432
tab_a_ = tabstrip_->
GetTabAt
(tab_a_index);
433
tab_b_ = tabstrip_->
GetTabAt
(tab_b_index);
508
TabGtk* tab = tabstrip_->
GetTabAt
(index);
529
TabGtk* current_tab = tabstrip_->
GetTabAt
(i);
553
if (tabstrip->
GetTabAt
(index)->mini())
557
tabstrip_->
GetTabAt
(index)->set_animating_mini_change(true)
[
all
...]
tab_strip_gtk.h
308
TabGtk*
GetTabAt
(int index) const;
316
// Use this instead of
GetTabAt
if the index comes from the model.
dragged_tab_controller_gtk.cc
628
return index == TabStripModel::kNoTab ? NULL : tabstrip->
GetTabAt
(index);
[
all
...]
/external/chromium/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc
160
TabGtk* tab = tabstrip->
GetTabAt
(index);
298
if (tabstrip_->
GetTabAt
(index)->mini())
301
if (tabstrip_->
GetTabAt
(index)->IsSelected()) {
352
TabGtk* tab = tabstrip_->
GetTabAt
(index);
411
tab_a_ = tabstrip_->
GetTabAt
(tab_a_index);
412
tab_b_ = tabstrip_->
GetTabAt
(tab_b_index);
485
TabGtk* tab = tabstrip_->
GetTabAt
(index);
506
TabGtk* current_tab = tabstrip_->
GetTabAt
(i);
530
if (tabstrip->
GetTabAt
(index)->mini())
534
tabstrip_->
GetTabAt
(index)->set_animating_mini_change(true)
[
all
...]
tab_strip_gtk.h
282
TabGtk*
GetTabAt
(int index) const;
290
// Use this instead of
GetTabAt
if the index comes from the model.
dragged_tab_controller_gtk.cc
560
return index == TabStripModel::kNoTab ? NULL : tabstrip->
GetTabAt
(index);
/external/chromium_org/chrome/browser/ui/android/tab_model/
tab_model.h
48
virtual TabAndroid*
GetTabAt
(int index) const = 0;
tab_model_unittest.cc
44
virtual TabAndroid*
GetTabAt
(int index) const OVERRIDE {
/external/chromium_org/chrome/browser/ui/views/tabs/
tab_controller.h
77
virtual Tab*
GetTabAt
(Tab* tab,
tab_strip.h
209
virtual Tab*
GetTabAt
(Tab* tab,
tab_unittest.cc
52
virtual Tab*
GetTabAt
(Tab* tab,
/external/chromium_org/chrome/browser/android/
dev_tools_server.cc
143
TabAndroid* tab = model->
GetTabAt
(index);
187
TabAndroid* tab = model->
GetTabAt
(i);
308
TabAndroid* tab = tab_model->
GetTabAt
(i);
326
TabAndroid* tab = model->
GetTabAt
(i);
/external/chromium_org/chrome/browser/ui/views/ash/
tab_scrubber.cc
160
Tab* new_tab = tab_strip->
GetTabAt
(initial_tab, tab_point);
/external/chromium_org/chrome/browser/sync/sessions2/
sessions_sync_manager.cc
182
SyncedTabDelegate* synced_tab = (*i)->
GetTabAt
(j);
184
//
GetTabAt
can return a null tab; in that case just skip it.
[
all
...]
Completed in 368 milliseconds
1
2