/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/pin/ |
background.js | 8 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 10 var current = tabs[0] 11 chrome.tabs.update(current.id, {'pinned': !current.pinned});
|
/external/llvm/test/YAMLParser/ |
spec-09-16.data | 3 # Tabs are confusing:
|
spec-05-12.data | 3 # We don't currently reject tabs as indentation. 6 # Tabs do's and don'ts:
|
/frameworks/base/docs/html/design/building-blocks/ |
tabs.jd | 1 page.title=Tabs 2 page.tags="tabs","actionbar","navigation","viewpager" 10 <p>Creating Swipe Views with Tabs</p> 14 <p>Tabs in the action bar make it easy to explore and switch between different views or functional 17 <p>For details on using gestures to move between tabs, see the <a href="{@docRoot}design/patterns/swipe-views.html">Swipe Views</a> pattern.</p> 19 <h2 id="scrollable">Scrollable Tabs</h2> 37 Scrolling tabs in the Play Store app. 45 <h2 id="fixed">Fixed Tabs</h2> 46 <p>Fixed tabs display all items concurrently. To navigate to a different view, touch the tab, or swipe left or right.</p> 47 <p>Fixed tabs are displayed with equal width, based on the width of the widest tab label. If there is insufficie (…) [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_schema_graph_test.py | 12 'namespace': 'tabs', 66 empty_graph.Lookup('tabs', 'properties', 69 empty_graph.Lookup('tabs', 'functions', 'get', 72 empty_graph.Lookup('tabs', 'functions', 'get', 75 empty_graph.Lookup('tabs', 'events', 'onActivated', 78 empty_graph.Lookup('tabs', 'events', 'onUpdated', 87 api_schema_graph.Lookup('tabs', 'properties', 90 api_schema_graph.Lookup('tabs', 'types', 'Tab')) 92 api_schema_graph.Lookup('tabs', 'functions', 'get', 95 api_schema_graph.Lookup('tabs', 'functions', 'get' [all...] |
/external/chromium/chrome/common/extensions/docs/ |
samples.json | 128 "chrome.tabs.captureVisibleTab": "tabs.html#method-captureVisibleTab", 129 "chrome.tabs.connect": "tabs.html#method-connect", 130 "chrome.tabs.create": "tabs.html#method-create", 131 "chrome.tabs.detectLanguage": "tabs.html#method-detectLanguage", 132 "chrome.tabs.executeScript": "tabs.html#method-executeScript" [all...] |
/external/chromium_org/chrome/browser/ui/views/tabs/ |
stacked_tab_strip_layout.h | 20 // tabs. StackedTabStripLayout differs from the normal layout in that it stacks 21 // tabs. Stacked tabs are tabs placed nearly on top of each other, and if enough 22 // consecutive stacked tabs exist they are placed on top of each other. Normally 23 // stacked tabs are placed after mini-tabs, or at the end of the tabstrip, but 24 // during dragging tabs may be stacked before or after the active tab. 30 // |size| is the size for tabs, |padding| the padding between consecutive 31 // tabs, |stacked_padding| the padding between stacked tabs [all...] |
/external/chromium_org/ui/webui/resources/css/ |
tabs.css | 10 tabs { 18 /* New users of tabs.css should add 'new-style-tabs' to the class list of any 19 * 'tabs' or 'tabpanels' elements. 24 tabs.new-style-tabs { 31 tabs > * { 46 tabs.new-style-tabs > * { 57 tabs > :not([selected]) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/ |
manifest.json | 4 "description": "Demonstrate screenshot functionality in the chrome.tabs api.", 10 "permissions": ["tabs"]
|
/external/chromium/chrome/browser/ui/views/tabs/ |
tab_strip_factory.cc | 5 #include "chrome/browser/ui/views/tabs/tab_strip_factory.h" 7 #include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h" 8 #include "chrome/browser/ui/views/tabs/side_tab_strip.h" 9 #include "chrome/browser/ui/views/tabs/tab_strip.h" 12 // SideTabStrip, depending on whether we are using vertical tabs.
|
/external/chromium_org/chrome/browser/extensions/ |
extension_tabs_apitest.cc | 56 IN_PROC_BROWSER_TEST_F(ExtensionApiNewTabTest, Tabs) { 63 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "crud.html")) << message_; 73 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "crud2.html")) << message_; 78 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "duplicate.html")) << message_; 82 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "tab_size.html")) << message_; 86 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "update.html")) << message_; 90 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "pinned.html")) << message_; 100 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "move.html")) << message_; 104 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "events.html")) << message_; 108 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "relative_urls.html") [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
tabs_api.js | 5 tabs = {}; 27 tabs = {}; 33 for (var j = 0; j < windowList[i].tabs.length; j++) { 34 tabIds[tabIds.length] = windowList[i].tabs[j].id; 35 tabs[windowList[i].tabs[j].id] = windowList[i].tabs[j]; 56 chrome.tabs.update(id, updateTabData(id)); 70 chrome.tabs.move(id, moveTabData(id)); 95 chrome.tabs.create(args) [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/messaging/timer/ |
popup.js | 19 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 22 var tab = tabs[0]; 23 chrome.tabs.sendRequest(tab.id, {counter: 1}, function handler(response) { 25 chrome.tabs.sendRequest(tab.id, {counter: response.counter}, handler); 39 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 43 var port = chrome.tabs.connect(tabs[0].id);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
popup.js | 5 // Show a list of all tabs in the same process as this one. 8 chrome.tabs.query({currentWindow: true, active: true}, function(tabs) { 9 var current = currentWindow.tabs.filter(function(tab) { 16 titleDiv.innerHTML = "<b>Tabs in Process " + pid + ":</b>"; 27 // Loop over all windows and their tabs 28 var tabs = []; 31 for (var j = 0; j < windowList[i].tabs.length; j++) { 32 var tab = windowList[i].tabs[j]; 34 tabs.push(tab) [all...] |
/external/chromium_org/chrome/common/extensions/docs/static/js/ |
tabs.js | 6 * Add support for tab pannels on custom elements (tabs, header and content) 35 var tabs = e.target.parentNode; 36 if (!tabs || tabs.tagName !== 'TABS') 39 var headers = tabs.getElementsByTagName('header'), 40 contents = tabs.getElementsByTagName('content'), 41 tabGroup = tabs.getAttribute("data-group"), 96 var tabs = document.getElementsByTagName('tabs'); [all...] |
/external/markdown/MarkdownTest/Tests_2004/ |
Tabs.html | 3 indented with tabs</p></li> 15 <pre><code> this code block is indented by two tabs 21 indented with tabs
|
/external/markdown/MarkdownTest/Tests_2007/ |
Tabs.html | 3 indented with tabs</p></li> 15 <pre><code> this code block is indented by two tabs 21 indented with tabs
|
/external/markdown/tests/markdown-test/ |
tabs.html | 4 indented with tabs</p> 15 <pre><code> this code block is indented by two tabs 19 indented with tabs
|
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
tabs_windows_api.cc | 5 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h" 8 #include "chrome/browser/extensions/api/tabs/tabs_event_router.h" 9 #include "chrome/browser/extensions/api/tabs/windows_event_router.h" 11 #include "chrome/common/extensions/api/tabs.h" 18 // Tabs API Events. 20 this, api::tabs::OnCreated::kEventName); 22 this, api::tabs::OnUpdated::kEventName); 24 this, api::tabs::OnMoved::kEventName); 26 this, api::tabs::OnSelectionChanged::kEventName); 28 this, api::tabs::OnActiveChanged::kEventName) [all...] |
/external/chromium/chrome/browser/debugger/ |
browser_list_tabcontents_provider.cc | 7 #include "chrome/browser/tabs/tab_strip_model.h" 12 DevToolsHttpProtocolHandler::InspectableTabs tabs; local 17 tabs.push_back(model->GetTabContentsAt(i)); 19 return tabs;
|
/external/chromium/chrome/browser/extensions/ |
extension_tabs_apitest.cc | 25 #define MAYBE_Tabs Tabs 49 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "crud.html")) << message_; 54 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "pinned.html")) << message_; 59 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "move.html")) << message_; 64 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "events.html")) << message_; 69 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "relative_urls.html")) 75 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "crash.html")) << message_; 80 ASSERT_TRUE(RunExtensionTest("tabs/get_current")) << message_; 85 ASSERT_TRUE(RunExtensionTest("tabs/connect")) << message_; 90 ASSERT_TRUE(RunExtensionTest("tabs/on_removed")) << message_ [all...] |
/external/chromium/chrome/browser/resources/ |
gpu_internals.html | 15 html, body, #main-tabs { 79 var tabs = $('main-tabs'); 80 cr.ui.decorate(tabs, gpu.TabControl); 82 // Sync the main-tabs selectedTabs in-sync with the location. 83 tabs.addEventListener('selectedTabChange', function() { 84 if (tabs.selectedTab.id) { 85 history.pushState('', '', '#' + tabs.selectedTab.id); 91 if (tabs.tabs.length [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/browserAction/make_page_red/ |
manifest.json | 6 "tabs", "http://*/*"
|
/external/chromium/chrome/common/extensions/docs/examples/api/browserAction/set_icon_path/ |
manifest.json | 6 "tabs", "http://*/*"
|
/external/chromium/chrome/common/extensions/docs/examples/api/i18n/cld/ |
background.html | 10 chrome.tabs.detectLanguage(null, function(language) { 18 chrome.tabs.onUpdated.addListener(function(tabId, props) { 23 chrome.tabs.onSelectionChanged.addListener(function(tabId, props) { 28 chrome.tabs.getSelected(null, function(tab) {
|