HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 351 - 375 of 1023) sorted by null

<<11121314151617181920>>

  /external/chromium_org/tools/perf/metrics/
system_memory.py 23 def Start(self, page, tab):
30 def Stop(self, page, tab):
41 def AddResults(self, tab, results, trace_name=None, exclude_metrics=None):
  /packages/apps/Settings/src/com/android/settings/applications/
ManageApplications.java 127 void onItemClick(ManageApplications.TabInfo tab, AdapterView<?> parent,
492 TabInfo tab = mTabs.get(position); local
493 View root = tab.build(mInflater, mContentContainer, mRootView);
495 root.setTag(R.id.name, tab);
582 public ApplicationsAdapter(ApplicationsState state, TabInfo tab, int filterMode) {
585 mTab = tab;
586 mContext = tab.mOwner.getActivity();
886 TabInfo tab = new TabInfo(this, mApplicationsState, local
961 TabInfo tab = mTabs.get(i); local
1069 TabInfo tab = mTabs.get(i); local
1134 TabInfo tab = tabForType(LIST_TYPE_RUNNING); local
1281 TabInfo tab = mTabs.get(position); local
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_service.cc 320 return; // Hapens when the tab is replaced.
331 // Tab is in last window. Don't commit it immediately, instead add it to the
341 // . closing a tab and there are other windows/tabs open.
343 // In all cases we need to mark the tab as explicitly closed.
346 // User closed the last tab in the last tabbed browser. Don't mark the
347 // tab closed.
420 // We'll hit this if user closed the last tab in a window.
521 void SessionService::TabRestored(WebContents* tab, bool pinned) {
522 SessionTabHelper* session_tab_helper = SessionTabHelper::FromWebContents(tab);
526 BuildCommandsForTab(session_tab_helper->window_id(), tab, -1
976 SessionTab* tab = new SessionTab(); local
1049 SessionTab* tab = i->second; local
1173 SessionTab* tab = GetTab(payload.id, tabs); local
1187 SessionTab* tab = GetTab(payload.id, tabs); local
1214 SessionTab* tab = GetTab(tab_id, tabs); local
1433 WebContents* tab = tab_strip->GetWebContentsAt(i); local
    [all...]
session_restore.h 29 // Indicates the active tab of the supplied browser should be closed.
48 // If |urls_to_open| is non-empty, a tab is added for each of the URLs.
70 // restores the given session tab to the browser of |source_web_contents| if
72 // to the restored tab. If |disposition| is CURRENT_TAB, |source_web_contents|
76 const SessionTab& tab,
  /external/chromium_org/chrome/browser/sync/sessions/
sessions_sync_manager_unittest.cc 82 virtual bool IsTabPinned(const SyncedTabDelegate* tab) const OVERRIDE {
83 return wrapped_->IsTabPinned(tab);
465 SyncedTabDelegateFake tab; local
468 tab.AppendEntry(NULL);
469 EXPECT_FALSE(sessions_util::ShouldSyncTab(tab));
470 tab.reset();
475 tab.AppendEntry(entry);
476 EXPECT_FALSE(sessions_util::ShouldSyncTab(tab));
482 tab.AppendEntry(entry2);
483 EXPECT_FALSE(sessions_util::ShouldSyncTab(tab));
495 SyncedTabDelegateFake tab; local
505 SyncedTabDelegateFake tab; local
528 SyncedTabDelegateFake tab; local
595 SyncedTabDelegateFake tab; local
665 SyncedTabDelegateFake tab; local
699 SyncedTabDelegateFake tab; local
    [all...]
  /developers/build/prebuilts/gradle/HorizontalPaging/Application/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 55 // state with the tab state. (See mViewPager.setOnPageChangeListener() and onTabSelected().)
71 // When swiping between different sections, select the corresponding tab. We can also use
72 // ActionBar.Tab#select() to do this if we have a reference to the Tab.
83 // For each of the sections in the app, add a tab to the action bar.
85 // Create a tab with text corresponding to the page title defined by the adapter. Also
87 // callback (listener) for when this tab is selected.
97 * Update {@link ViewPager} after a tab has been selected in the ActionBar.
99 * @param tab Tab that was selected
    [all...]
  /developers/samples/android/ui/views/HorizontalPaging/Application/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 55 // state with the tab state. (See mViewPager.setOnPageChangeListener() and onTabSelected().)
71 // When swiping between different sections, select the corresponding tab. We can also use
72 // ActionBar.Tab#select() to do this if we have a reference to the Tab.
83 // For each of the sections in the app, add a tab to the action bar.
85 // Create a tab with text corresponding to the page title defined by the adapter. Also
87 // callback (listener) for when this tab is selected.
97 * Update {@link ViewPager} after a tab has been selected in the ActionBar.
99 * @param tab Tab that was selected
    [all...]
  /development/samples/browseable/HorizontalPaging/src/com.example.android.horizontalpaging/
MainActivity.java 55 // state with the tab state. (See mViewPager.setOnPageChangeListener() and onTabSelected().)
71 // When swiping between different sections, select the corresponding tab. We can also use
72 // ActionBar.Tab#select() to do this if we have a reference to the Tab.
83 // For each of the sections in the app, add a tab to the action bar.
85 // Create a tab with text corresponding to the page title defined by the adapter. Also
87 // callback (listener) for when this tab is selected.
97 * Update {@link ViewPager} after a tab has been selected in the ActionBar.
99 * @param tab Tab that was selected
    [all...]
  /development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
MainActivity.java 74 // When swiping between different app sections, select the corresponding tab.
75 // We can also use ActionBar.Tab#select() to do this if we have a reference to the
76 // Tab.
81 // For each of the sections in the app, add a tab to the action bar.
83 // Create a tab with text corresponding to the page title defined by the adapter.
85 // listener for when this tab is selected.
94 public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
98 public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction)
    [all...]
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelper.java 31 * Call {@link TabHelper#newTab(String)} to create each tab.
35 * Call {@link TabHelper#addTab(CompatTab)} for each tab, and you're done.
60 * Create a new tab.
62 * @param tag A unique tag to associate with the tab and associated fragment
73 public abstract void addTab(CompatTab tab);
  /external/chromium_org/athena/extensions/chrome/
athena_chrome_app_delegate.h 24 content::WebContents* tab,
  /external/chromium_org/athena/extensions/shell/
athena_shell_app_delegate.cc 33 content::WebContents* tab,
athena_shell_app_delegate.h 24 content::WebContents* tab,
  /external/chromium_org/chrome/browser/extensions/
extension_incognito_apitest.cc 37 WebContents* tab = otr_browser->tab_strip_model()->GetActiveWebContents(); local
42 tab,
79 WebContents* tab = otr_browser->tab_strip_model()->GetActiveWebContents(); local
84 tab,
  /external/chromium_org/chrome/browser/sync/glue/
synced_session.h 92 // that the tab has navigations and contains at least one valid url.
94 bool ShouldSyncSessionTab(const SessionTab& tab);
  /external/chromium_org/chrome/browser/ui/location_bar/
origin_chip_info.h 84 static bool IsMalware(const GURL& url, const content::WebContents* tab);
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_sub_menu_model.cc 44 // Initial comamnd ID's for navigatable (and hence executable) tab/window menu
47 // device section headers, separators, local and other devices' tab items, and
50 // only have navigatabale/executable tab items.
52 // Using initial command IDs for local tab, local window and other devices' tab
68 // The maximum number of local recently closed entries (tab or window) to be
85 // Returns true if the command id identifies a tab menu item.
137 // the navigation information of a local or other devices' tab required to
138 // restore the tab.
265 if (disposition == CURRENT_TAB) // Force to open a new foreground tab
290 const SessionTab* tab; local
402 TabRestoreService::Tab* tab = local
463 const SessionTab* tab = window->tabs[t]; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.cc 26 #include "chrome/browser/ui/views/tabs/tab.h"
91 TabContextMenuContents(Tab* tab,
93 : tab_(tab),
98 controller->tabstrip_->GetModelIndexOfTab(tab)));
166 // The tab we're showing a menu for.
167 Tab* tab_;
221 Tab* tab) const {
222 int model_index = tabstrip_->GetModelIndexOfTab(tab);
322 Tab* tab = tabstrip_->tab_at(i); local
    [all...]
tab_strip_controller.h 13 class Tab;
39 // Returns true if the tab at |index| is the active tab. The active tab is the
43 // Returns the index of the active tab.
52 // Returns true if the selected index is the new tab page.
55 // Select the tab at the specified index in the model.
67 // Closes the tab at the specified index in the model.
70 // Toggles audio muting for the tab at the specified index in the model.
73 // Shows a context menu for the tab at the specified point in screen coords
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/
recently_closed_tabs_handler.cc 22 void TabToValue(const TabRestoreService::Tab& tab,
25 tab.navigations.at(tab.current_navigation_index);
28 dictionary->SetString("type", "tab");
29 dictionary->SetDouble("timestamp", tab.timestamp.ToDoubleT());
77 // There are actually less than 20 restore tab items displayed in the UI.
94 // The current tab has been nuked at this point; don't touch any member
118 // where an interesting entry is either a closed window or a closed tab
119 // whose selected navigation is not the new tab ui
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
background.js 30 chrome.tabs.onUpdated.addListener(function(tabId, change, tab) {
41 // Ensure the current selected tab is set up.
  /external/chromium_org/ui/accessibility/extensions/alt/
background.js 42 chrome.browserAction.onClicked.addListener(function(tab) {
43 injectScripts(tab);
  /external/chromium_org/ui/accessibility/extensions/longdesc/
background.js 12 * injected into any new tab.
58 * @param tab
60 function contextMenuClicked(info, tab) {
  /external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane.h 15 class Tab;
19 // TabbedPane is a view that shows tabs. When the user clicks on a tab, the
37 // Returns the contents of the selected tab or NULL if there is none.
40 // Adds a new tab at the end of this TabbedPane with the specified |title|.
41 // |contents| is the view displayed when the tab is selected and is owned by
45 // Adds a new tab at |index| with |title|. |contents| is the view displayed
46 // when the tab is selected and is owned by the TabbedPane. If the tabbed pane
47 // is currently empty, the new tab is selected.
50 // Selects the tab at |index|, which must be valid.
53 // Selects |tab| (the tabstrip view, not its content) if it is valid
    [all...]
  /external/clang/test/Preprocessor/
traditional-cpp.c 23 /* The lines in this file contain hard tab characters and trailing whitespace;
27 * CHECK: {{^}}tab separated values{{$}}
30 tab separated values

Completed in 648 milliseconds

<<11121314151617181920>>