/external/chromium/chrome/common/extensions/docs/ |
api_index.html | 129 <span class="greytext">e.g. "page action" or "tabs"</span> 146 <ul id="home" class="gc-topnav-tabs"> 192 <li><a href="tabs.html">Tabs</a></li> 345 <li><a href="bookmarks.html" js="">bookmarks</a></li><li><a href="browserAction.html" js="">browserAction</a></li><li><a href="contextMenus.html" js="">contextMenus</a></li><li><a href="cookies.html" js="">cookies</a></li><li><a href="extension.html" js="">extension</a></li><li><a href="history.html" js="">history</a></li><li><a href="i18n.html" js="">i18n</a></li><li><a href="idle.html" js="">idle</a></li><li><a href="management.html" js="">management</a></li><li><a href="omnibox.html" js="">omnibox</a></li><li><a href="pageAction.html" js="">pageAction</a></li><li><a href="tabs.html" js="">tabs</a></li><li><a href="windows.html" js="">windows</a></li>
|
apps.html | 129 <span class="greytext">e.g. "page action" or "tabs"</span> 146 <ul id="home" class="gc-topnav-tabs"> 192 <li><a href="tabs.html">Tabs</a></li> 448 we should show and define both app panels and tabs. 475 tabs that contain app's pages.
|
background_pages.html | 129 <span class="greytext">e.g. "page action" or "tabs"</span> 146 <ul id="home" class="gc-topnav-tabs"> 192 <li><a href="tabs.html">Tabs</a></li> 409 <a href="tabs.html#method-create"><code>chrome.tabs.create()</code></a>)
|
tabs.html | 19 <title>Tabs - Google Chrome Extensions - Google Code</title></head> 129 <span class="greytext">e.g. "page action" or "tabs"</span> 146 <ul id="home" class="gc-topnav-tabs"> 192 <li class="leftNavSelected">Tabs</li> 254 <h1 class="page_title">Tabs</h1> 276 <a href="#apiReference">API reference: chrome.tabs</a> 360 <div id="static"><div id="pageData-name" class="pageData">Tabs</div> 364 Use the <code>chrome.tabs</code> module 367 create, modify, and rearrange tabs in the browser. 370 <img src="images/tabs.png" width="323" height="50" alt="Two tabs in a window" [all...] |
faq.html | 129 <span class="greytext">e.g. "page action" or "tabs"</span> 146 <ul id="home" class="gc-topnav-tabs"> 192 <li><a href="tabs.html">Tabs</a></li> 347 <li><a href="#faq-interact-chrome">Can extensions listen to clicks on Chrome tabs and navigation buttons?</a> 529 <h3 id="faq-interact-chrome">Can extensions listen to clicks on Chrome tabs and 711 chrome.tabs.executeScript function (for example), search for 712 "<code>Feature=Extensions Type=Bug chrome.tabs.executeScript</code>", 714 <a href="http://code.google.com/p/chromium/issues/list?can=2&q=Feature%3DExtensions+Type%3DBug+chrome.tabs.executeScript&colspec=ID+Stars+Pri+Area+Feature+Type+Status+Summary+Modified+Owner+Mstone+OS&x=mstone&y=area&cells=tiles"> [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/ |
background.js | 683 chrome.tabs.getAllInWindow(null, function(tabs) { 684 for (var i = 0, tab; tab = tabs[i]; i++) { 686 chrome.tabs.update(tab.id, {selected: true}); 691 chrome.tabs.create({url: GOOGLE_CALENDAR_URL}); 720 chrome.tabs.onUpdated.addListener(onTabUpdated);
|
/frameworks/base/core/java/android/app/ |
ActionBar.java | 77 * presents a series of tabs for navigation within the activity. 502 * <p>Very often tabs will be used to switch between {@link Fragment} 503 * objects. Here is a typical implementation of such tabs:</p> 567 * Remove all tabs from the action bar and deselect the current tab. 597 * Returns the number of tabs currently registered with the action bar. 705 * <p>Tabs manage the hiding and showing of {@link Fragment}s. 811 * All tabs must have a TabListener set before being added to the ActionBar. [all...] |
/external/chromium/chrome/browser/ |
app_controller_mac.mm | 42 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h" 43 #import "chrome/browser/ui/cocoa/tabs/tab_window_controller.h" 204 // Register for a notification that the number of tabs changes in windows 354 // If the window has tabs, make "close window" be cmd-shift-w, otherwise leave 362 // If the window has tabs, make "close tab" take over cmd-w, otherwise it 384 // See if we have a window with tabs open, and adjust the key equivalents for 458 // Called when the number of tabs changes in one of the browser windows. The 669 // Browser-level items that open in new tabs should not open if there's [all...] |
browser_focus_uitest.cc | 14 #include "chrome/browser/tabs/tab_strip_model.h" 267 // Tabs remember focus. 277 // Create several tabs. 336 // Tabs remember focus with find-in-page box. 790 // types of tabs. [all...] |
/external/chromium/chrome/browser/chromeos/ |
wm_overview_controller.cc | 17 #include "chrome/browser/tabs/tab_strip_model.h" 87 // Returns the number of tabs in this child. 325 // Ignore requests to switch to non-existent tabs (the window manager gets 326 // notified asynchronously about the number of tabs in each window, so there's 605 // result in a very long delay until they get configured if tabs
|
/external/chromium/chrome/browser/ui/views/frame/ |
glass_browser_frame_view.cc | 18 #include "chrome/browser/ui/views/tabs/side_tab_strip.h" 19 #include "chrome/browser/ui/views/tabs/tab.h" 20 #include "chrome/browser/ui/views/tabs/tab_strip.h" 39 // Vertical tabs have 4 px border. 57 // the top of the screen so the tabs appear flush against the screen edge.
|
/external/chromium/chrome/browser/ui/views/tabs/ |
tab.cc | 5 #include "chrome/browser/ui/views/tabs/tab.h" 57 // Opacity for non-active selected tabs. 60 // Selected (but not active) tabs have their throb value scaled down by this. 93 const char Tab::kViewClassName[] = "browser/tabs/Tab"; 628 // Non-selected tabs clip close button before favicon.
|
/external/chromium/chrome/browser/debugger/ |
devtools_http_protocol_handler.cc | 235 typedef DevToolsHttpProtocolHandler::InspectableTabs Tabs; 236 Tabs inspectable_tabs = tab_contents_provider->GetInspectableTabs(); 239 for (Tabs::iterator it = inspectable_tabs.begin();
|
/external/chromium/chrome/browser/ui/ |
browser_navigator.cc | 13 #include "chrome/browser/tabs/tab_strip_model.h" 52 // Returns true if the specified Browser can open tabs. Not all Browsers support 53 // multiple tabs, such as app frames and popups. This function returns false for
|
/external/chromium/chrome/browser/ui/gtk/ |
browser_window_gtk.h | 17 #include "chrome/browser/tabs/tab_strip_model_observer.h" 231 // VBox that holds everything (tabs, toolbar, bookmarks bar, tab contents). 320 // the window to the top of the tabs when the full skyline isn't displayed
|
/external/doclava/res/assets/templates/assets/ |
doclava-developer-core.css | 207 min-width:675px; /* min width for the tabs, before they wrap */ 228 /* Tabs in the header */ 635 /* search result tabs */
|
/packages/apps/Browser/src/com/android/browser/ |
TabBar.java | 107 mTabs = (TabScrollView) findViewById(R.id.tabs); 149 void updateTabs(List<Tab> tabs) { 152 for (Tab tab : tabs) {
|
/external/chromium/chrome/browser/automation/ |
automation_provider_observers.h | 33 #include "chrome/browser/tabs/tab_strip_model.h" 73 // {'tabs': [{'start_time_ms': 1, 'stop_time_ms': 2.5}, 76 // Only includes entries for the |tab_count| tabs we are monitoring. [all...] |
/external/markdown/MarkdownTest/Tests_2004/ |
Markdown Documentation - Syntax.text | 93 not be indented with tabs or spaces. Markdown is smart enough not 188 blank line -- a line containing nothing but spaces or tabs is considered 189 blank.) Normal paragraphs should not be intended with spaces or tabs. 438 to be indented *twice* -- 8 spaces or two tabs: 593 * followed by one or more spaces (or tabs); 603 or tabs for padding, which tends to look better with longer URLs:
|
/external/markdown/MarkdownTest/Tests_2007/ |
Markdown Documentation - Syntax.text | 93 not be indented with tabs or spaces. Markdown is smart enough not 188 blank line -- a line containing nothing but spaces or tabs is considered 189 blank.) Normal paragraphs should not be intended with spaces or tabs. 438 to be indented *twice* -- 8 spaces or two tabs: 593 * followed by one or more spaces (or tabs); 603 or tabs for padding, which tends to look better with longer URLs:
|
/external/markdown/tests/extensions-x-def_list/ |
markdown-syntax.txt | 93 not be indented with tabs or spaces. Markdown is smart enough not 188 blank line -- a line containing nothing but spaces or tabs is considered 189 blank.) Normal paragraphs should not be intended with spaces or tabs. 438 to be indented *twice* -- 8 spaces or two tabs: 593 * followed by one or more spaces (or tabs); 603 or tabs for padding, which tends to look better with longer URLs:
|
/external/markdown/tests/extensions-x-toc/ |
syntax-toc.txt | 56 not be indented with tabs or spaces. Markdown is smart enough not 151 blank line -- a line containing nothing but spaces or tabs is considered 152 blank.) Normal paragraphs should not be intended with spaces or tabs. 401 to be indented *twice* -- 8 spaces or two tabs: 556 * followed by one or more spaces (or tabs); 566 or tabs for padding, which tends to look better with longer URLs:
|
/external/markdown/tests/markdown-test/ |
markdown-syntax.txt | 93 not be indented with tabs or spaces. Markdown is smart enough not 188 blank line -- a line containing nothing but spaces or tabs is considered 189 blank.) Normal paragraphs should not be intended with spaces or tabs. 438 to be indented *twice* -- 8 spaces or two tabs: 593 * followed by one or more spaces (or tabs); 603 or tabs for padding, which tends to look better with longer URLs:
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
DialtactsActivity.java | 74 * a tab with the favorite. This is the container and the tabs are 351 * This value does not keep track of programmatically set Tabs (e.g. Call Log after a Call) 472 // Setup the ActionBar tabs (the order matches the tab-index contants TAB_INDEX_*) 485 // Stored value may have exceeded the number of current tabs. Reset it. [all...] |
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
TitlesFragment.java | 212 // the action bar tabs appear in a second row, making the action bar twice as tall. 234 * which this fragment implements to handle events when tabs are selected.
|