| /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_i18n/ |
| manifest.json | 12 "tabs",
|
| /external/chromium_org/chrome/test/chromedriver/extension/ |
| manifest.json | 11 "tabs", "<all_urls>"
|
| /external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/ |
| manifest.json | 10 "tabs", "http://*/*"
|
| /external/chromium_org/tools/json_schema_compiler/ |
| cpp_type_generator_test.py | 36 self.tabs_json = CachedLoad('test/tabs.json') 37 self.tabs = self.models['tabs'].AddNamespace(self.tabs_json[0], 38 'path/to/tabs.json') 55 m.AddNamespace(self.tabs_json[0], 'path/to/tabs.json') 59 self.assertEquals('#include "path/to/tabs.h"', 61 self.assertEquals('namespace tabs {\n' 95 manager = CppTypeGenerator(self.models.get('tabs'), _FakeSchemaLoader(None)) 98 manager.GetCppType(self.tabs.types['Tab'].properties['id'].type_)) 101 manager.GetCppType(self.tabs.types['Tab'].properties['status'].type_) [all...] |
| /external/chromium_org/tools/telemetry/telemetry/core/ |
| browser_unittest.py | 56 self.assertEquals(1, len(b.tabs)) 59 assert b.tabs[0].url 66 t = b.tabs[0] 85 existing_tab = b.tabs[0] 86 self.assertEquals(1, len(b.tabs)) 89 new_tab = b.tabs.New() 90 self.assertEquals(2, len(b.tabs)) 95 self.assertEquals(1, len(b.tabs)) 100 b.tabs[0].Navigate(b.http_server.UrlOf('blank.html')) 101 b.tabs[0].WaitForDocumentReadyStateToBeInteractiveOrBetter( [all...] |
| /external/llvm/test/YAMLParser/ |
| spec-06-01.data | 13 # Tabs are not allowed:
|
| /external/llvm/utils/emacs/ |
| emacs.el | 5 ;; Max 80 cols per line, indent by two spaces, no tabs. 6 ;; Apparently, this does not affect tabs in Makefiles. 11 '(indent-tabs-mode nil)) 20 (indent-tabs-mode . nil)
|
| /external/mesa3d/ |
| .dir-locals.el | 2 (indent-tabs-mode . nil)
|
| /external/chromium_org/chrome/browser/ui/gtk/tabs/ |
| drag_data.h | 55 // Holds information about all the dragged tabs. It also provides several 62 // Returns all the |tab_| fields of the tabs in |drag_data_|. 65 // Returns all the |contents_| fields of the tabs in |drag_data_|. 72 // Calculates the number of mini and non mini tabs from position |from| 78 // Convenience method for getting the number of the dragged tabs. 101 // Number of non mini tabs within |drag_data_|. 103 // Number of mini tabs within |drag_data_|.
|
| drag_data.cc | 5 #include "chrome/browser/ui/gtk/tabs/drag_data.h" 7 #include "chrome/browser/ui/gtk/tabs/tab_gtk.h" 8 #include "chrome/browser/ui/tabs/tab_strip_model.h" 57 std::vector<TabGtk*> tabs; local 60 tabs.push_back(drag_data_[i].tab_); 62 return tabs;
|
| /external/chromium_org/chrome/browser/ui/tabs/ |
| pinned_tab_service_unittest.cc | 10 #include "chrome/browser/ui/tabs/pinned_tab_codec.h" 11 #include "chrome/browser/ui/tabs/pinned_tab_service.h" 12 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" 13 #include "chrome/browser/ui/tabs/pinned_tab_test_utils.h" 14 #include "chrome/browser/ui/tabs/tab_strip_model.h" 49 // Makes sure closing a popup triggers writing pinned tabs. 61 // Close the browser. This should trigger saving the tabs. No need to destroy
|
| tab_strip_model.h | 12 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" 31 // related tasks like adding new Tabs from just a URL, etc. 34 // . Mini-tab. Mini tabs are locked to the left side of the tab strip and 35 // rendered differently (small tabs with only a favicon). The model makes 36 // sure all mini-tabs are at the beginning of the tab strip. For example, 37 // if a non-mini tab is added it is forced to be with non-mini tabs. Requests 38 // to move tabs outside the range of the tab type are ignored. For example, 39 // a request to move a mini-tab after non-mini-tabs is ignored. 41 // there are two tab types that are implicitly mini-tabs: 42 // . App. Corresponds to an extension that wants an app tab. App tabs ar [all...] |
| /external/chromium_org/chrome/common/extensions/docs/server2/test_data/object_level_availability/ |
| tabs.py | 24 'tabs.json': json.dumps([{ 25 'namespace': 'tabs', 122 'tabs.json': json.dumps([{ 123 'namespace': 'tabs', 219 'tabs.json': json.dumps([{ 220 'namespace': 'tabs', 311 'tabs.json': json.dumps([{ 312 'namespace': 'tabs', 389 'tabs.json': json.dumps([{ 390 'namespace': 'tabs', [all...] |
| /external/chromium/chrome/browser/ui/views/tabs/ |
| side_tab_strip.h | 9 #include "chrome/browser/ui/views/tabs/base_tab_strip.h" 16 // The tabs are inset by this much along all axis. 51 virtual void LayoutDraggedTabsAt(const std::vector<BaseTab*>& tabs, 56 const std::vector<BaseTab*>& tabs, 58 virtual int GetSizeNeededForTabs(const std::vector<BaseTab*>& tabs) OVERRIDE; 70 // Returns the max visible y-coordinate for tabs. 86 // Separator between mini-tabs and the new tab button. The separator is 87 // positioned above the visible area if there are no mini-tabs. 94 // scrolled the tabs this is non-zero. 97 // Height needed to display the tabs, separator and new tab button. Doesn' [all...] |
| /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/ |
| background.js | 11 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 12 lastTabId = tabs[0].id; 13 chrome.tabs.sendMessage(lastTabId, "Background page started."); 45 chrome.tabs.create({url: "http://google.com"}, function(tab) { 46 chrome.tabs.executeScript(tab.id, {file: "content.js"}, function() { 56 chrome.tabs.create({url: "http://www.google.com/"}); 85 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 92 chrome.tabs.sendMessage(lastTabId, "Background page unloaded.") [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/api/messaging/timer/ |
| popup.html | 27 chrome.tabs.getSelected(null, function(tab) { 31 chrome.tabs.sendRequest(tab.id, {counter: 1}, function handler(response) { 33 chrome.tabs.sendRequest(tab.id, {counter: response.counter}, handler); 47 chrome.tabs.getSelected(null, function(tab) { 51 var port = chrome.tabs.connect(tab.id);
|
| /external/chromium_org/chrome/common/extensions/docs/server2/ |
| availability_finder_test.py | 20 from test_data.object_level_availability.tabs import TABS_SCHEMA_BRANCHES 80 # The earliest version represented with the tabs' test data is 13. 98 self._node_avail_finder.GetApiNodeAvailability('tabs') 138 self._avail_finder.GetApiAvailability('tabs')) 234 availability_graph = self._node_avail_finder.GetApiNodeAvailability('tabs') 238 availability_graph.Lookup('tabs', 'properties', 242 availability_graph.Lookup('tabs', 'events', 'onActivated', 247 availability_graph.Lookup('tabs', 'events', 'onUpdated', 'parameters', 251 availability_graph.Lookup('tabs', 'events','onActivated')) 254 availability_graph.Lookup('tabs', 'functions', 'get', 'parameters' [all...] |
| /external/chromium_org/chrome/browser/sessions/ |
| tab_restore_service_helper.cc | 127 // into the vector, which will give all tabs in a window the same ID. 129 window->tabs.push_back(Tab()); 133 PopulateTab(&(window->tabs[entry_index]), 137 if (window->tabs[entry_index].navigations.empty()) { 138 window->tabs.erase(window->tabs.begin() + entry_index); 140 window->tabs[entry_index].browser_id = delegate->GetSessionID().id(); 144 if (window->tabs.size() == 1 && window->app_name.empty()) { 148 AddEntry(new Tab(window->tabs[0]), true, true); 149 } else if (!window->tabs.empty()) 377 std::vector<Tab>& tabs = static_cast<Window*>(*i)->tabs; local [all...] |
| /external/chromium_org/chrome/common/extensions/api/ |
| sessions.json | 8 "description": "Use the <code>chrome.sessions</code> API to query and restore tabs and windows from a browsing session.", 28 "tab": {"$ref": "tabs.Tab", "optional": true, "description": "The $ref:tabs.Tab, if this entry describes a tab. Either this or $ref:Session.window will be set."}, 45 "description": "Gets the list of recently closed tabs and/or windows.", 57 "name": "sessions", "type": "array", "items": { "$ref": "Session" }, "description": "The list of closed entries in reverse order that they were closed (the most recently closed tab or window will be at index <code>0</code>).The entries may contain either tabs or windows." 78 "name": "devices", "type": "array", "items": { "$ref": "Device" }, "description": "The list of $ref:Device objects for each synced session, sorted in order from device with most recently modified session to device with least recently modified session. $ref:tabs.Tab objects are sorted by recency in the $ref:windows.Window of the $ref:Session objects." 87 "description": "Reopens a $ref:windows.Window or $ref:tabs.Tab, with an optional callback to run when the entry has been restored.", 93 "description": "The $ref:windows.Window.sessionId, or $ref:tabs.Tab.sessionId to restore." 103 "description": "A $ref:Session containing the restored $ref:windows.Window or $ref:tabs.Tab object."
|
| /external/chromium/chrome/browser/sessions/ |
| tab_restore_service.cc | 137 // have Tabs with the |id|. 143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin(); 144 for ( ; j != window->tabs.end(); ++j) { 145 // If the ID matches one of this window's tabs, remove it from the list. 147 window->tabs.erase(j); 241 // into the vector, which will give all tabs in a window the same ID. 243 window->tabs.push_back(Tab()); 247 PopulateTab(&(window->tabs[entry_index]), 251 if (window->tabs[entry_index].navigations.empty()) { 252 window->tabs.erase(window->tabs.begin() + entry_index) 553 std::vector<Tab>& tabs = static_cast<Window*>(*i)->tabs; local [all...] |
| /external/chromium_org/tools/perf/measurements/ |
| tab_switching.py | 7 This measurement opens pages in different tabs. After all the tabs have opened, 32 return browser.tabs.New() 40 if len(tab.browser.tabs) != len(page.page_set.pages): 55 for i in xrange(len(tab.browser.tabs)): 56 t = tab.browser.tabs[i]
|
| /external/chromium_org/chrome/browser/ui/views/tabs/ |
| tab_strip.h | 13 #include "chrome/browser/ui/tabs/tab_strip_layout_type.h" 14 #include "chrome/browser/ui/views/tabs/tab.h" 15 #include "chrome/browser/ui/views/tabs/tab_controller.h" 47 // container for Tabs, and is also responsible for creating them. 49 // DraggedTab, focusing on tasks that require reshuffling other tabs 50 // in response to dragged tabs. 126 // Gets the number of Tabs in the tab strip. 156 // Updates the loading animations displayed by tabs in the tabstrip to the 168 // Set the background offset used by inactive tabs to match the frame image. 177 // Returns true if Tabs in this TabStrip are currently changing size o [all...] |
| /external/chromium/chrome/browser/ui/cocoa/applescript/ |
| window_applescript_test.mm | 64 // Tabs within the window. 65 IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, Tabs) { 68 NSArray* tabs = [aWindow.get() tabs]; 69 EXPECT_EQ(1U, [tabs count]); 70 TabAppleScript* tab1 = [tabs objectAtIndex:0]; 89 TabAppleScript* tab = [[aWindow.get() tabs] objectAtIndex:1]; 111 TabAppleScript* tab = [[aWindow.get() tabs] objectAtIndex:0]; 119 // Inserting and deleting tabs. 131 EXPECT_EQ((int)[[aWindow.get() tabs] count], count) [all...] |
| /external/chromium_org/chrome/browser/ui/cocoa/applescript/ |
| window_applescript_test.mm | 64 // Tabs within the window. 65 IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, Tabs) { 68 NSArray* tabs = [aWindow.get() tabs]; 69 EXPECT_EQ(1U, [tabs count]); 70 TabAppleScript* tab1 = [tabs objectAtIndex:0]; 89 TabAppleScript* tab = [[aWindow.get() tabs] objectAtIndex:1]; 111 TabAppleScript* tab = [[aWindow.get() tabs] objectAtIndex:0]; 119 // Inserting and deleting tabs. 131 EXPECT_EQ((int)[[aWindow.get() tabs] count], count) [all...] |
| /external/chromium_org/chrome/browser/ui/startup/ |
| startup_browser_creator_impl.h | 39 // Assists launching the application and appending the initial tabs for a 66 // Tabs. 72 // Creates a tab for each of the Tabs in |tabs|. If browser is non-null 73 // and a tabbed browser, the tabs are added to it. Otherwise a new tabbed 74 // browser is created and the tabs are added to it. The browser the tabs 79 const StartupTabs& tabs, 129 // . Attempts to restore any pinned tabs from last run of chrome. 134 // If any tabs were opened, the Browser which was created is returned [all...] |