/frameworks/base/docs/html/reference/renderscript/ |
structrs__sampler.html | 7 <link href="tabs.css" rel="stylesheet" type="text/css"/> 18 <div id="navrow1" class="tabs">
|
structrs__script.html | 7 <link href="tabs.css" rel="stylesheet" type="text/css"/> 18 <div id="navrow1" class="tabs">
|
structrs__script__call.html | 7 <link href="tabs.css" rel="stylesheet" type="text/css"/> 18 <div id="navrow1" class="tabs">
|
structrs__type.html | 7 <link href="tabs.css" rel="stylesheet" type="text/css"/> 18 <div id="navrow1" class="tabs">
|
/packages/apps/Browser/res/values/ |
integers.xml | 19 <!-- The maximum number of open tabs --> 27 <!-- fade between tabs duration -->
|
/external/chromium/chrome/browser/chromeos/ |
tab_closeable_state_watcher.h | 12 #include "chrome/browser/tabs/tab_strip_model_observer.h" 18 // This class overrides ::TabCloseableStateWatcher to allow or disallow tabs or 19 // browsers to be closed based on increase or decrease in number of tabs or 27 // in it, the browser stays open, the existing tabs are closed, and a new 39 // it, the browser stays open, the existing tabs are closed, and a new 98 // allow closing of all tabs and browsers in this situation.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/gmail/ |
background.html | 85 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo) { 243 chrome.tabs.getAllInWindow(undefined, function(tabs) { 244 for (var i = 0, tab; tab = tabs[i]; i++) { 246 chrome.tabs.update(tab.id, {selected: true}); 250 chrome.tabs.create({url: getGmailUrl()});
|
/external/chromium/chrome/browser/sync/glue/ |
session_model_associator.h | 92 // with the status of open windows and the order of tabs they contain. Should 96 // If |reload_tabs| is true, will also resync all tabs (same as calling 97 // ReassociateTabs with a vector of all tabs). 100 // Loads and reassociates the local tabs referenced in |tabs|. 101 void ReassociateTabs(const std::vector<TabContents*>& tabs); 161 // Specifies whether the window has tabs to sync. The new tab page does not 162 // count. If no tabs to sync, it returns true, otherwise false; 165 // Control which local tabs we're interested in syncing. 170 // Control which foreign tabs we're interested in displaying [all...] |
foreign_session_tracker.cc | 24 // Only include sessions with open tabs. 123 // Delete ForeignSession objects (which also deletes all their windows/tabs). 134 // Go through and delete any tabs we had allocated but had not yet placed into
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_model_unittest.cc | 21 #include "chrome/browser/tabs/tab_strip_model.h" 22 #include "chrome/browser/tabs/tab_strip_model_delegate.h" 23 #include "chrome/browser/tabs/tab_strip_model_order_controller.h" 136 // Whether tabs can be closed. 191 // if the model consists of two tabs with ids 2 and 1, with the first 566 // Make sure the second of the two tabs is selected first... 601 // as the first tab in the strip and then we create 5 other tabs in the 626 // All the tabs should have the same opener. 641 // For a tab that has opened no other tabs, the return value should always be 675 // Tests opening background tabs [all...] |
tab_strip_model.cc | 5 #include "chrome/browser/tabs/tab_strip_model.h" 23 #include "chrome/browser/tabs/tab_strip_model_delegate.h" 24 #include "chrome/browser/tabs/tab_strip_model_order_controller.h" 120 // Force app tabs to be pinned. 272 // This would result in mini tabs mixed with non-mini tabs. We don't allow 290 // To maintain that all mini-tabs occur before non-mini-tabs we move them 297 // We're being told to drag mini-tabs to an invalid location. Adjust the 298 // index such that non-mini-tabs end up at a location as though we coul 822 std::vector<TabContentsWrapper*> tabs; local 839 std::vector<TabContentsWrapper*> tabs; local 1113 std::vector<TabContentsWrapper*> tabs; local [all...] |
/external/chromium/chrome/browser/sessions/ |
session_service.h | 33 // and tabs so that they can be restored at a later date. The state of the 202 // to restore, the tabs are added to it, otherwise a new browser is created. 260 // SessionWindow based on the actual tabs that were restored. 268 // Returns the tab with the specified id in tabs. If a tab does not exist, 271 IdToSessionTab* tabs); 283 // . Deletes and removes any windows with no tabs or windows with types other 287 // . Sorts the tabs in windows with valid tabs based on the tabs 293 // Adds tabs to their parent window based on the tab's window_id. Thi [all...] |
session_service.cc | 25 #include "chrome/browser/tabs/tab_strip_model.h" 231 // list of tabs to close. If the user creates another window, the close is 240 // . closing a tab and there are other windows/tabs open. 753 std::map<int, SessionTab*> tabs; local 756 if (CreateTabsAndWindows(commands, &tabs, &windows)) { 757 AddTabsToWindows(&tabs, &windows); 761 STLDeleteValues(&tabs); 772 for (std::vector<SessionTab*>::const_iterator j = (*i)->tabs.begin(); 773 j != (*i)->tabs.end(); ++j) { 775 new_index = static_cast<int>(j - (*i)->tabs.begin()) [all...] |
/external/chromium/chrome/browser/sync/ |
profile_sync_service_session_unittest.cc | 223 // Get the tabs for this machine from the node and check that they were 227 // Tabs are ordered by sessionid in tab_map, so should be able to traverse 228 // the tree based on order of tabs created 296 ASSERT_EQ(1U, foreign_sessions[0]->windows[0]->tabs.size()); 297 ASSERT_EQ(1U, foreign_sessions[0]->windows[0]->tabs[0]->navigations.size()); 301 ASSERT_EQ(13, foreign_sessions[0]->windows[0]->tabs[0]->tab_visual_index); 303 foreign_sessions[0]->windows[0]->tabs[0]->current_navigation_index); 304 ASSERT_TRUE(foreign_sessions[0]->windows[0]->tabs[0]->pinned); 306 foreign_sessions[0]->windows[0]->tabs[0]->extension_app_id); 308 foreign_sessions[0]->windows[0]->tabs[0]->navigations[0].index()) [all...] |
/external/chromium/chrome/browser/ui/views/tabs/ |
tab_dragging_test.cc | 21 // tabs out. 56 // Automated UI test to open three tabs in a new window, and drag Tab_1 into 87 // Make sure 3 tabs are open. 90 // Get bounds for the tabs. 185 // Make sure 3 tabs are open. 188 // Get bounds for the tabs. 292 // Make sure 3 tabs are open. 295 // Get bounds for the tabs. 366 // The tabs should be in their original positions. 402 // Make sure 3 tabs are opened [all...] |
tab.h | 12 #include "chrome/browser/ui/views/tabs/base_tab.h" 47 // Returns the minimum possible size of a selected Tab. Selected tabs must 49 // tabs. 55 // Returns the width for mini-tabs. Mini-tabs always have this width.
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
tab_control.js | 10 * Tabs must be explicitly added/removed from the control. 30 * Creates a new tab element. A tab element is one of multiple tabs 117 * Any child elements pre-existing on the element will become tabs. 126 this.tabs_.classList.add('tabs'); 133 // Reparent existing tabs to the tabs_ div. 237 * Returns an array of all the tabs within this control. This is 241 get tabs() {
|
/external/chromium/chrome/browser/ui/login/ |
login_prompt_uitest.cc | 121 // Test that logging in on 2 tabs at once works. 208 // If multiple tabs are looking for the same auth, the user should only have to 226 // Set the auth in only one of the tabs (but wait for the other to load). 232 // Now both tabs have loaded. 248 // If multiple tabs are looking for the same auth, and one is cancelled, the 266 // Cancel the auth in only one of the tabs (but wait for the other to load). 272 // Now both tabs have been denied.
|
/external/webkit/Tools/Scripts/webkitpy/style/ |
filter_unittest.py | 57 all_categories = ["tabs", "whitespace", "build/include"] 60 "tabs", 61 "*tabs", 62 " tabs", 63 " +tabs", 69 "+tabs", 70 "-tabs",
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_strip_controller.mm | 5 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h" 28 #include "chrome/browser/tabs/tab_strip_model.h" 37 #import "chrome/browser/ui/cocoa/tabs/tab_controller.h" 38 #import "chrome/browser/ui/cocoa/tabs/tab_strip_model_observer_bridge.h" 39 #import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" 40 #import "chrome/browser/ui/cocoa/tabs/tab_view.h" 41 #import "chrome/browser/ui/cocoa/tabs/throbber_view.h" 90 // The amount by which tabs overlap. 96 // The amount by which the new tab button is offset (from the tabs). 103 // Time (in seconds) in which tabs animate to their final position [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
AppsCustomizeTabHost.java | 65 * Convenience methods to select specific tabs. We want to set the content type immediately 68 * tabs manually). 84 * Setup the tab host and create all necessary tabs. 92 final TabWidget tabs = (TabWidget) findViewById(com.android.internal.R.id.tabs); local 95 mTabs = tabs; 100 if (tabs == null || mAppsCustomizePane == null) throw new Resources.NotFoundException(); 102 // Configure the tabs content factory to return the same paged view (that we change the 110 // Create the tabs 114 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false) [all...] |
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
_index.html | 74 <dt><a href="FragmentTabs.html">Fragment Tabs</a></dt> 76 tabs in a TabHost.</dd> 78 <dt><a href="FragmentTabsPager.html">Fragment Tabs Pager</a></dt> 80 tabs in a TabHost, using a ViewPager to manager the fragments so that 81 the user can also fling left and right to switch tabs.</dd>
|
/frameworks/base/docs/html/design/patterns/ |
actionbar.jd | 112 <p>To allow the user to quickly switch between the views your app provides, use tabs or a spinner in 149 <h4>Tabs</h4> 150 <p><em>Tabs</em> display app views concurrently and make it easy to explore and switch between them. Use tabs 155 <p>There are two types of tabs: fixed and scrollable.</p> 160 <h4>Scrollable tabs</h4> 161 <p><em>Scrollable tabs</em> always take up the entire width of the bar, with the currently active view item in 162 the center, and therefore need to live in a dedicated bar. Scrollable tabs can themselves be 163 scrolled horizontally to bring more tabs into view.</p> 164 <p>Use scrollable tabs if you have a large number of views or if you're unsure how many views will b [all...] |
/external/chromium/chrome/browser/metrics/ |
metrics_service_uitest.cc | 31 // We need to show the window so web content type tabs load. 35 // Open a few tabs of random content 89 // Kill the process for one of the tabs.
|
/external/chromium/chrome/browser/sync/protocol/ |
session_specifics.proto | 33 // Index of the selected tab in tabs; -1 if no tab is selected. 42 // The tabs that compose a window (correspond to tab id's). 60 // Tabs are navigated, and the navigation data is here.
|