HomeSort by relevance Sort by last modified time
    Searched refs:Tab (Results 51 - 75 of 88) sorted by null

1 23 4

  /external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.h 92 // TabRestoreService to re-open the closed window or tab that this
177 // Creates a HistoryItem* for the given tab entry. Caller takes ownership of
179 HistoryItem* HistoryItemForTab(const TabRestoreService::Tab& entry);
  /packages/apps/Browser/src/com/android/browser/
NfcHandler.java 39 Tab mCurrentTab;
TitleBar.java 216 Tab tab = mBaseUi.getActiveTab(); local
217 WebView webview = tab != null ? tab.getWebView() : null;
262 public void updateAutoLogin(Tab tab, boolean animate) {
264 if (tab.getDeviceAccountLogin() == null) {
269 mAutoLogin.updateAutoLogin(tab, animate);
333 Tab t = mBaseUi.getActiveTab();
376 public void onTabDataChanged(Tab tab)
    [all...]
IntentHandler.java 69 Tab current = mTabControl.getCurrentTab();
70 // When a tab is closed on exit, the current tab index is set to -1.
71 // Reset before proceed as Browser requires the current tab to be set.
73 // Try to reset the tab in case the index was incorrect.
140 Tab t = mController.openTab(urlData);
145 * 0) If this is a javascript: URI, *always* open a new tab
146 * 1) If this is a voice search, re-use tab for appId
147 * If there is no appId, use current tab
148 * 2) If the URL is already opened, switch to that tab
188 Tab tab = mController.openTab(urlData); local
    [all...]
DownloadTouchIcon.java 54 /* package */ Tab mTab;
61 public DownloadTouchIcon(Tab tab, Context ctx, ContentResolver cr, WebView view) {
62 mTab = tab;
PieControlXLarge.java 122 final List<Tab> tabs = mUiController.getTabs();
137 Tab tab = mUiController.getTabControl().getCurrentTab(); local
138 WebView web = tab.getWebView();
140 tab.goBack();
142 tab.goForward();
144 if (tab.inPageLoad()) {
NavigationBarTablet.java 143 void updateNavigationState(Tab tab) {
144 if (tab != null) {
145 mBackButton.setImageResource(tab.canGoBack()
148 mForwardButton.setImageResource(tab.canGoForward()
156 public void onTabDataChanged(Tab tab) {
157 super.onTabDataChanged(tab);
158 showHideStar(tab);
332 private void showHideStar(Tab tab)
    [all...]
AutologinBar.java 92 public void updateAutoLogin(Tab tab, boolean animate) {
93 DeviceAccountLogin login = tab.getDeviceAccountLogin();
PhoneUi.java 111 public void onProgressChanged(Tab tab) {
112 if (tab.inForeground()) {
113 int progress = tab.getLoadProgress();
155 public void setActiveTab(final Tab tab) {
158 super.setActiveTab(tab);
159 BrowserWebView view = (BrowserWebView) tab.getWebView();
161 // so the tab is guaranteed to have a webview
163 Log.e(LOGTAG, "active tab with no webview detected")
    [all...]
PieControlPhone.java 99 final List<Tab> tabs = mUiController.getTabs();
SnapshotBar.java 186 public void onTabDataChanged(Tab tab) {
187 if (!tab.isSnapshot()) return;
188 SnapshotTab snapshot = (SnapshotTab) tab;
196 setFavicon(tab.getFavicon());
NavigationBarPhone.java 132 * @param title String to display. If null, the new tab string will be
261 public void onTabDataChanged(Tab tab) {
262 super.onTabDataChanged(tab);
263 mIncognitoIcon.setVisibility(tab.isPrivateBrowsingEnabled()
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
TitlesFragment.java 237 public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
240 titleFrag.populateTitles(tab.getPosition());
249 public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) {
252 public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) {
  /external/chromium/chrome/browser/ui/
browser_init.cc 259 // called during shutdown and |tab| can be NULL.
260 TabContents* tab = browser->GetSelectedTabContents();
261 if (!tab || tab->infobar_count() > 0)
263 tab->AddInfoBar(new DefaultBrowserInfoBarDelegate(tab));
436 std::vector<BrowserInit::LaunchWithProfile::Tab>* tabs) {
438 BrowserInit::LaunchWithProfile::Tab tab; local
439 tab.is_pinned = false
952 BrowserInit::LaunchWithProfile::Tab tab; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
GoToLineDialog.js 98 if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Tab.code) {
KeyboardShortcut.js 53 Tab: { code: 9, name: { mac: "\u21e5", other: "<Tab>" } },
  /packages/apps/Contacts/src/com/android/contacts/activities/
DialtactsActivity.java 35 import android.app.ActionBar.Tab;
72 * The dialer activity that has one tab with the virtual 12key
73 * dialer, a tab with recent calls in it, a tab with the contacts and
74 * a tab with the favorite. This is the container and the tabs are
76 * The dialer tab's title is 'phone', a more common name (see strings.xml).
109 /** Last manually selected tab index */
152 * During user's drag or tab click, we shouldn't show fake buttons but just show real
157 * True when the app detects user's tab click (at the top of the screen). This variable should
160 * During user's drag or tab click, we shouldn't show fake buttons but just show rea
650 final Tab tab = getActionBar().newTab(); local
658 final Tab tab = getActionBar().newTab(); local
666 final Tab tab = getActionBar().newTab(); local
855 Tab tab = getActionBar().getSelectedTab(); local
959 final Tab tab = actionBar.getSelectedTab(); local
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
JNIBindingsTestApp.java 153 Tab tab = mController.getTabControl().getCurrentTab(); local
154 WebView webView = tab.getWebView();
245 Tab tab = mController.getTabControl().getCurrentTab(); local
246 WebView webView = tab.getWebView();
PopularUrlsTest.java 134 Tab tab = mController.getTabControl().getCurrentTab(); local
135 WebView webView = tab.getWebView();
438 Tab tab = mController.getTabControl().getCurrentTab(); local
439 WebView webView = tab.getWebView();
  /external/qemu/
curses_keys.h 63 ['\t'] = 15, /* Tab */
144 [0x161] = 15 | SHIFT, /* Shift + Tab */
199 /* Control + i collides with Tab */
448 { "Tab", '\t' },
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneActivity.java 41 import android.app.ActionBar.Tab;
139 private ActionBar.Tab mDayTab;
140 private ActionBar.Tab mWeekTab;
141 private ActionBar.Tab mMonthTab;
142 private ActionBar.Tab mAgendaTab;
358 // configureActionBar auto-selects the first tab you add, so we need to
    [all...]
  /external/chromium/chrome/browser/ui/tabs/
dock_info.cc 9 #include "chrome/browser/ui/views/tabs/tab.h"
66 // Make the maximize height smaller than the tab height to avoid showing
69 hot_spot_delta_y = Tab::GetMinimumUnselectedSize().height() - 1;
  /external/chromium/chrome/browser/
jumplist_win.cc 591 // To update JumpList when a tab is added or removed, we add this object to
617 // Added or removed a tab.
640 bool JumpList::AddTab(const TabRestoreService::Tab* tab,
643 // This code adds the URL and the title strings of the given tab to the
646 if (tab->navigations.empty() || list->size() >= max_items)
650 tab->navigations.at(tab->current_navigation_index);
727 // The last URL of the tab object.
741 if (entry->type == TabRestoreService::TAB) {
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageCompose.java 21 import android.app.ActionBar.Tab;
1932 ActionBar.Tab tab = getActionBar().newTab(); local
1944 ActionBar.Tab tab = actionBar.getTabAt(i); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
new_tab_ui.cc 81 // currently displayed tab to be the one in TabRestoreService with a
127 // The current tab has been nuked at this point; don't touch any member
213 // Sets the new tab page as home page when user clicks on "make this my home
336 // for the new tab thumbs to happen earlier.
484 // Microsoft developer network". In RTL locales, in the [New Tab] page, if
489 // http://yahoo.com is "Yahoo!". In RTL locales, in the [New Tab] page, the
520 bool IsTabUnique(const DictionaryValue* tab,
525 if (tab->GetString("title", &title) &&
526 tab->GetString("url", &url)) {
547 // where an interesting entry is either a closed window or a closed tab
    [all...]

Completed in 2752 milliseconds

1 23 4