/packages/apps/Browser/src/com/android/browser/ |
TabControl.java | 40 private ArrayList<Tab> mTabs = new ArrayList<Tab>(MAX_TABS); 42 private ArrayList<Tab> mTabQueue = new ArrayList<Tab>(MAX_TABS); 71 * Return the current tab's main WebView. This will always return the main 72 * WebView for a given tab and not a subwindow. 73 * @return The current tab's WebView. 76 Tab t = getTab(mCurrentTab); 84 * Return the current tab's top-level WebView. This can return a subwindow 86 * @return The top-level WebView of the current tab [all...] |
DownloadTouchIcon.java | 46 /* package */ Tab mTab; 48 public DownloadTouchIcon(Tab tab, ContentResolver cr, WebView view) { 49 mTab = tab;
|
Tab.java | 79 class Tab { 81 private static final String LOGTAG = "Tab"; 99 // tab. 101 // Data used when displaying the tab in the picker. 103 // Parent Tab. This is the Tab that created this Tab, or null if the Tab was 105 private Tab mParentTab; 106 // Tab that constructed by this Tab. This is used when this Tab i [all...] |
BrowserActivity.java | 221 // Create the tab control and our initial tab 327 // Create an initial tab. 330 // the tab will be close when exit. 334 final Tab t = mTabControl.createNewTab( 356 // TabControl.restoreState() will create a new tab even if 396 Tab current = mTabControl.getCurrentTab(); 397 // When a tab is closed on exit, the current tab index is set to -1. 398 // Reset before proceed as Browser requires the current tab to be set 1039 Tab tab = mTabControl.getCurrentTab(); local 1052 Tab tab = mTabControl.getCurrentTab(); local 1208 Tab tab = mTabControl.getTab(index); local 1718 final Tab tab = mTabControl.createNewTab(closeOnExit, appId, local [all...] |
ActiveTabsPage.java | 58 // Create a new tab 61 // Open the corresponding tab 62 // If the tab is the current one, switchToTab will 76 * of a tab can be pressed, but the close button itself is not. 133 // Do not recycle the "add new tab" item. 154 Tab tab = mControl.getTab(position); local 155 tab.populatePickerData(); 156 title.setText(tab.getTitle()); 157 url.setText(tab.getUrl()) [all...] |
/packages/apps/Browser/tests/src/com/android/browser/ |
JNIBindingsTestApp.java | 112 Tab tab = mActivity.getTabControl().getCurrentTab(); local 113 WebView webView = tab.getWebView(); 194 Tab tab = mActivity.getTabControl().getCurrentTab(); local 195 WebView webView = tab.getWebView();
|
PopularUrlsTest.java | 120 Tab tab = mActivity.getTabControl().getCurrentTab(); local 121 WebView webView = tab.getWebView(); 355 Tab tab = mActivity.getTabControl().getCurrentTab(); local 356 WebView webView = tab.getWebView();
|
/external/webkit/WebCore/inspector/front-end/ |
KeyboardShortcut.js | 48 Tab: 9,
|
/external/qemu/ |
curses_keys.h | 63 ['\t'] = 15, /* Tab */ 144 [0x161] = 15 | SHIFT, /* Shift + Tab */ 199 /* Control + i collides with Tab */ 448 { "Tab", '\t' },
|