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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/views/tabs/
tab_controller.h 21 // Selects the tab.
22 virtual void SelectTab(BaseTab* tab) = 0;
24 // Extends the selection from the anchor to |tab|.
25 virtual void ExtendSelectionTo(BaseTab* tab) = 0;
27 // Toggles whether |tab| is selected.
28 virtual void ToggleSelected(BaseTab* tab) = 0;
30 // Adds the selection the anchor to |tab|.
31 virtual void AddSelectionFromAnchorTo(BaseTab* tab) = 0;
33 // Closes the tab.
34 virtual void CloseTab(BaseTab* tab) = 0
    [all...]
base_tab_strip.cc 20 // Animation delegate used when a dragged tab is released. When done sets the
25 explicit ResetDraggingStateDelegate(BaseTab* tab) : tab_(tab) {
44 // AnimationDelegate used when removing a tab. Does the necessary cleanup when
49 RemoveTabDelegate(BaseTabStrip* tab_strip, BaseTab* tab)
51 tab_(tab) {
60 // . The tab we reference was dragged back into the tab strip. In this case
61 // we don't want to remove the tab (closing is false).
63 // (DestroyDraggedSourceTab). In this case we need to remove the tab
129 BaseTab* tab = CreateTab(); local
147 BaseTab* tab = tab_data_[from_tab_data_index].tab; local
158 BaseTab* tab = GetBaseTabAtModelIndex(model_index); local
214 BaseTab* tab = base_tab_at_tab_index(i); local
406 BaseTab* tab = GetBaseTabAtModelIndex(model_index); local
    [all...]
  /external/chromium/chrome/browser/
pdf_unsupported_feature.h 13 // Call this when a tab encounters a PDF that has features which our internal
17 void PDFHasUnsupportedFeature(TabContents* tab);
repost_form_warning_uitest.cc 37 scoped_refptr<TabProxy> tab(browser->GetTab(0));
38 ASSERT_TRUE(tab.get());
41 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/form.html")));
43 ASSERT_TRUE(tab->NavigateToURL(GURL(
47 tab->ReloadAsync();
48 tab->ReloadAsync();
51 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("bar")));
68 scoped_refptr<TabProxy> tab(browser->GetTab(0));
69 ASSERT_TRUE(tab.get());
72 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/form.html")))
    [all...]
collected_cookies_uitest.cc 36 scoped_refptr<TabProxy> tab(browser->GetTab(0));
37 ASSERT_TRUE(tab.get());
44 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie1.html")));
47 ASSERT_TRUE(tab->ShowCollectedCookiesDialog());
48 ASSERT_TRUE(tab->ShowCollectedCookiesDialog());
64 scoped_refptr<TabProxy> tab(browser->GetTab(0));
65 ASSERT_TRUE(tab.get());
72 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie1.html")));
75 ASSERT_TRUE(tab->ShowCollectedCookiesDialog());
78 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie2.html")))
    [all...]
  /external/chromium/chrome/browser/sessions/
session_types.cc 35 TabNavigation::TabNavigation(const TabNavigation& tab)
36 : virtual_url_(tab.virtual_url_),
37 referrer_(tab.referrer_),
38 title_(tab.title_),
39 state_(tab.state_),
40 transition_(tab.transition_),
41 type_mask_(tab.type_mask_),
42 index_(tab.index_) {
48 TabNavigation& TabNavigation::operator=(const TabNavigation& tab) {
49 virtual_url_ = tab.virtual_url_
    [all...]
  /external/chromium/chrome/browser/sidebar/
sidebar_manager.h 42 // Returns SidebarContainer registered for |tab| and active or NULL if
43 // there is no alive and active SidebarContainer registered for |tab|.
44 SidebarContainer* GetActiveSidebarContainerFor(TabContents* tab);
46 // Returns SidebarContainer registered for |tab| and |content_id| or NULL if
48 SidebarContainer* GetSidebarContainerFor(TabContents* tab,
51 // Returns sidebar's TabContents registered for |tab| and |content_id|.
52 TabContents* GetSidebarTabContents(TabContents* tab,
61 // Shows sidebar identified by |tab| and |content_id| (only sidebar's
62 // mini tab is visible).
63 void ShowSidebar(TabContents* tab, const std::string& content_id)
    [all...]
sidebar_manager.cc 20 // Sidebars linked to this tab.
41 TabContents* tab) {
42 TabToSidebarHostMap::iterator it = tab_to_sidebar_host_.find(tab);
54 TabContents* tab, const std::string& content_id) {
56 TabToSidebarHostMap::iterator it = tab_to_sidebar_host_.find(tab);
67 TabContents* tab, const std::string& content_id) {
69 SidebarContainer* sidebar_host = GetSidebarContainerFor(tab, content_id);
103 void SidebarManager::ShowSidebar(TabContents* tab,
106 SidebarContainer* host = GetSidebarContainerFor(tab, content_id);
108 host = new SidebarContainer(tab, content_id, this)
    [all...]
sidebar_browsertest.cc 71 TabContents* tab = browser()->GetSelectedTabContents(); local
75 sidebar_manager->NavigateSidebar(tab, content_id_, url);
78 sidebar_manager->GetSidebarContainerFor(tab, content_id_);
84 void ShowSidebar(TabContents* tab) {
86 sidebar_manager->ShowSidebar(tab, content_id_);
89 void ExpandSidebar(TabContents* tab) {
91 sidebar_manager->ExpandSidebar(tab, content_id_);
92 if (browser()->GetSelectedTabContents() == tab)
96 void CollapseSidebar(TabContents* tab) {
98 sidebar_manager->CollapseSidebar(tab, content_id_)
    [all...]
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
CompatTabListener.java 27 *android.app.ActionBar.Tab, android.app.FragmentTransaction)
29 public void onTabSelected(CompatTab tab, FragmentTransaction ft);
33 *android.app.ActionBar.Tab, android.app.FragmentTransaction)
35 public void onTabUnselected(CompatTab tab, FragmentTransaction ft);
39 *android.app.ActionBar.Tab, android.app.FragmentTransaction)
41 public void onTabReselected(CompatTab tab, FragmentTransaction ft);
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 48 void onSetWebView(Tab tab, WebView view);
50 void createSubWindow(Tab tab);
52 void onPageStarted(Tab tab, WebView view, Bitmap favicon);
54 void onPageFinished(Tab tab);
56 void onProgressChanged(Tab tab);
    [all...]
UI.java 57 public void addTab(Tab tab);
59 public void removeTab(Tab tab);
61 public void setActiveTab(Tab tab);
63 public void updateTabs(List<Tab> tabs);
65 public void detachTab(Tab tab);
67 public void attachTab(Tab tab)
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
tab_control.css 6 .tab-control {
15 .tab-control > .tab-strip {
27 .tab-control > .tabs {
34 .tab-control > .tabs > :not([selected]) {
38 .tab-control .tab-button {
51 .tab-control .tab-button:hover {
56 .tab-control .tab-button:visited
    [all...]
  /external/chromium/chrome/browser/tabs/
pinned_tab_test_utils.cc 7 typedef BrowserInit::LaunchWithProfile::Tab Tab;
11 std::string TabToString(const Tab& tab) {
12 return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
13 (tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
20 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values) {
  /external/chromium/chrome/browser/ui/webui/
bookmarks_ui_uitest.cc 20 bool WaitForBookmarksUI(TabProxy* tab) {
21 return WaitUntilJavaScriptCondition(tab, L"",
33 scoped_refptr<TabProxy> tab = browser->GetActiveTab();
34 EXPECT_TRUE(tab.get());
35 if (!tab.get())
37 bool success = tab->NavigateToURL(GURL(chrome::kChromeUIBookmarksURL));
41 success = WaitForBookmarksUI(tab);
45 return tab;
48 void AssertIsBookmarksPage(TabProxy* tab) {
49 // tab->GetCurrentURL is not up to date
71 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
96 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
119 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
152 scoped_refptr<TabProxy> tab = GetBookmarksUITab(); local
    [all...]
print_preview_ui_uitest.cc 26 void AssertIsPrintPage(TabProxy* tab) {
28 ASSERT_TRUE(tab->GetTabTitle(&title));
41 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
42 ASSERT_TRUE(tab.get());
44 // Go to the print preview tab via URL.
46 AssertIsPrintPage(tab);
56 // Make sure there is 1 tab and print is enabled. Create print preview tab.
68 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
69 ASSERT_TRUE(tab.get())
    [all...]
  /external/chromium/chrome/browser/resources/options/
subpages_tab_controls.css 7 .subpages-nav-tabs .tab {
12 .subpages-nav-tabs .active-tab {
22 * bold, we actually put two labels inside each tab: an inactive label and an
24 * size the tab even when it's not visible. This keeps the tab size constant.
26 .subpages-nav-tabs .active-tab-label {
30 .subpages-nav-tabs .tab-label {
36 html[dir=rtl] .subpages-nav-tabs .tab-label {
40 .subpages-nav-tabs .active-tab-label,
41 .subpages-nav-tabs .active-tab .tab-label
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
tostring-2.js 50 var tab = " "; variable
53 var equals = new TestFunction( "Equals", "a, b", tab+ "return a == b;" );
59 ( version() <= 120 ) ? tab +"return a == b;" : tab +"return a === b;" );
64 var doesntequal = new TestFunction( "DoesntEqual", "a, b", tab + "return a != b;" );
70 ( version() <= 120 ) ? tab +"return a != b;" : tab +"return a !== b;" );
75 var testor = new TestFunction( "TestOr", "a", tab+"if (a == null || a == void 0) {\n"+
76 tab +tab+"return 0;\n"+tab+"} else {\n"+tab+tab+"return a;\n"+tab+"}" )
    [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
click_handler.cc 28 TabContents* tab = location_bar_->GetTabContentsWrapper()->tab_contents();
29 NavigationEntry* nav_entry = tab->controller().GetActiveEntry();
34 tab->ShowPageInfo(nav_entry->url(), nav_entry->ssl(), true);
  /external/chromium/chrome/browser/notifications/
notifications_interactive_uitest.cc 27 scoped_refptr<TabProxy> tab(browser->GetActiveTab());
28 ASSERT_TRUE(tab.get());
30 tab->NavigateToURL(test_server.GetURL(
37 ASSERT_TRUE(tab->ExecuteAndExtractBool(
43 EXPECT_TRUE(tab->WaitForInfoBarCount(1));
54 scoped_refptr<TabProxy> tab(browser->GetActiveTab());
55 ASSERT_TRUE(tab.get());
60 tab->NavigateToURL(test_server.GetURL(
65 ASSERT_TRUE(tab->GetInfoBarCount(&info_bar_count));
  /external/webkit/Source/WebCore/inspector/front-end/
TabbedPane.js 63 var tab = this._tabs[id];
64 this._showTab(tab);
65 this._currentTab = tab;
68 this.dispatchEventToListeners("tab-selected", event);
73 _showTab: function(tab)
75 tab.tabElement.addStyleClass("selected");
76 tab.view.show(this._contentElement);
79 _hideTab: function(tab)
81 tab.tabElement.removeStyleClass("selected");
82 tab.view.visible = false
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
tabswitcherview.css 6 .tab-switcher-view {
10 .tab-switcher-view ul {
16 .tab-switcher-view {
22 .tab-switcher-view li {
27 html[dir=rtl] .tab-switcher-view li {
31 .tab-switcher-view a {
43 .tab-switcher-view a:hover {
48 .tab-switcher-view a:visited,
49 .tab-switcher-view a {
53 .tab-switcher-view .selected
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_sidebar_api.h 27 Profile* profile, TabContents* tab, const std::string& content_id,
39 virtual bool RunImpl(TabContents* tab,
46 virtual bool RunImpl(TabContents* tab,
54 virtual bool RunImpl(TabContents* tab,
62 virtual bool RunImpl(TabContents* tab,
70 virtual bool RunImpl(TabContents* tab,
78 virtual bool RunImpl(TabContents* tab,
86 virtual bool RunImpl(TabContents* tab,
94 virtual bool RunImpl(TabContents* tab,
102 virtual bool RunImpl(TabContents* tab,
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_browser_tests.cc 36 void CheckAuthenticatedState(TabContents* tab,
38 NavigationEntry* entry = tab->controller().GetActiveEntry();
48 void CheckUnauthenticatedState(TabContents* tab) {
49 NavigationEntry* entry = tab->controller().GetActiveEntry();
58 void CheckAuthenticationBrokenState(TabContents* tab,
62 NavigationEntry* entry = tab->controller().GetActiveEntry();
76 void CheckWorkerLoadResult(TabContents* tab, bool expectLoaded) {
87 tab->render_view_host(), std::wstring(),
102 tab->render_view_host(), std::wstring(),
108 void ProceedThroughInterstitial(TabContents* tab) {
247 TabContents* tab = browser()->GetSelectedTabContents(); local
277 TabContents* tab = browser()->GetSelectedTabContents(); local
320 TabContents* tab = browser()->GetSelectedTabContents(); local
347 TabContents* tab = browser()->GetSelectedTabContents(); local
374 TabContents* tab = browser()->GetSelectedTabContents(); local
478 TabContents* tab = browser()->GetSelectedTabContents(); local
520 TabContents* tab = browser()->GetSelectedTabContents(); local
625 TabContents* tab = browser()->GetSelectedTabContents(); local
651 TabContents* tab = browser()->GetSelectedTabContents(); local
674 TabContents* tab = browser()->GetSelectedTabContents(); local
704 TabContents* tab = browser()->GetSelectedTabContents(); local
774 TabContents* tab = browser()->GetSelectedTabContents(); local
795 TabContents* tab = browser()->GetSelectedTabContents(); local
811 TabContents* tab = browser()->GetSelectedTabContents(); local
828 TabContents* tab = browser()->GetSelectedTabContents(); local
891 TabContents* tab = browser()->GetSelectedTabContents(); local
965 TabContents* tab = browser()->GetSelectedTabContents(); local
1009 TabContents* tab = browser()->GetSelectedTabContents(); local
1060 TabContents* tab = browser()->GetSelectedTabContents(); local
1076 TabContents* tab = browser()->GetSelectedTabContents(); local
    [all...]
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
MediaDump.java 39 TabHost tab = getTabHost(); local
41 // Setup video dumping tab
42 TabHost.TabSpec videoDumpTab = tab.newTabSpec("VideoDump");
48 tab.addTab(videoDumpTab);
50 // Setup rgb player tab
51 TabHost.TabSpec rgbPlayerTab = tab.newTabSpec("RgbPlayer");
57 tab.addTab(rgbPlayerTab);

Completed in 1490 milliseconds

1 2 3 4 5 6 7 8 91011>>