HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 276 - 300 of 1046) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/sync/glue/
session_model_associator_unittest.cc 46 void LoadTabFavicon(const sync_pb::SessionTab& tab) {
47 model_associator_.LoadForeignTabFavicon(tab);
96 scoped_ptr<SessionTab> tab(new SessionTab());
97 win.tabs.push_back(tab.release());
107 SessionTab tab; local
108 ASSERT_FALSE(ShouldSyncSessionTab(tab));
112 tab.navigations.push_back(nav);
114 ASSERT_FALSE(ShouldSyncSessionTab(tab));
118 tab.navigations.push_back(nav2);
119 // Once there's another navigation, the tab is valid
125 SessionTab tab; local
466 sync_pb::SessionTab tab; local
485 sync_pb::SessionTab tab; local
505 sync_pb::SessionTab tab; local
526 sync_pb::SessionTab tab; local
    [all...]
synced_tab_delegate_android.cc 120 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); local
121 return tab ? tab->GetSyncedTabDelegate() : NULL;
  /libcore/luni/src/main/java/java/util/
Hashtable.java 124 HashtableEntry<K, V>[] tab = (HashtableEntry<K, V>[]) EMPTY_TABLE; local
125 table = tab;
266 HashtableEntry<K, V>[] tab = table; local
267 for (HashtableEntry<K, V> e = tab[hash & (tab.length - 1)];
290 HashtableEntry<K, V>[] tab = table; local
291 for (HashtableEntry<K, V> e = tab[hash & (tab.length - 1)];
314 HashtableEntry[] tab = table; local
315 int len = tab.length
365 HashtableEntry<K, V>[] tab = table; local
401 HashtableEntry<K, V>[] tab = table; local
554 HashtableEntry<K, V>[] tab = table; local
713 HashtableEntry<K, V>[] tab = table; local
732 HashtableEntry<K, V>[] tab = table; local
746 HashtableEntry<K, V>[] tab = table; local
798 HashtableEntry<K, V>[] tab = table; local
814 HashtableEntry<K, V>[] tab = table; local
    [all...]
HashMap.java 145 HashMapEntry<K, V>[] tab = (HashMapEntry<K, V>[]) EMPTY_TABLE; local
146 table = tab;
306 HashMapEntry<K, V>[] tab = table; local
307 for (HashMapEntry<K, V> e = tab[hash & (tab.length - 1)];
336 HashMapEntry<K, V>[] tab = table; local
337 for (HashMapEntry<K, V> e = tab[hash & (tab.length - 1)];
365 HashMapEntry[] tab = table; local
366 int len = tab.length
405 HashMapEntry<K, V>[] tab = table; local
468 HashMapEntry<K, V>[] tab = table; local
636 HashMapEntry<K, V>[] tab = table; local
791 HashMapEntry<K, V>[] tab = table; local
811 HashMapEntry<K, V>[] tab = table; local
856 HashMapEntry<K, V>[] tab = table; local
884 HashMapEntry<K, V>[] tab = table; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_gf2m.c 137 BN_ULONG tab[8], top2b = a >> 30; local
142 tab[0] = 0; tab[1] = a1; tab[2] = a2; tab[3] = a1^a2;
143 tab[4] = a4; tab[5] = a1^a4; tab[6] = a2^a4; tab[7] = a1^a2^a4;
145 s = tab[b & 0x7]; l = s
169 BN_ULONG tab[16], top3b = a >> 61; local
    [all...]
bn_kron.c 69 /* In 'tab', only odd-indexed entries are relevant:
71 * tab[BN_lsw(n) & 7]
75 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
124 ret = tab[BN_lsw(A) & 7];
164 ret = ret * tab[BN_lsw(B) & 7];
  /external/openssl/crypto/bn/
bn_gf2m.c 137 BN_ULONG tab[8], top2b = a >> 30; local
142 tab[0] = 0; tab[1] = a1; tab[2] = a2; tab[3] = a1^a2;
143 tab[4] = a4; tab[5] = a1^a4; tab[6] = a2^a4; tab[7] = a1^a2^a4;
145 s = tab[b & 0x7]; l = s
169 BN_ULONG tab[16], top3b = a >> 61; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 21 import android.app.ActionBar.Tab;
57 * Called when the user selects a tab. The new tab can be obtained using
196 * Because the navigation list items are in a different order than tab items, this returns
197 * the appropriate tab from the navigation item position.
257 final Tab tab = mActionBar.newTab(); local
258 tab.setTabListener(mTabListener);
260 tab.setText(description);
262 tab.setIcon(icon)
    [all...]
  /external/chromium/chrome/browser/ui/webui/
foreign_session_handler.cc 28 // Invalid value, used to note that we don't have a tab or window number.
156 // Extract tab id.
161 LOG(ERROR) << "Failed to extract tab SessionID.";
170 const SessionTab* tab; local
171 if (!associator->GetForeignTab(session_string_value, tab_id, &tab)) {
172 LOG(ERROR) << "Failed to load foreign tab.";
175 SessionRestore::RestoreForeignSessionTab(web_ui_->GetProfile(), *tab);
197 const SessionTab& tab,
199 if (tab.navigations.empty())
201 int selected_index = tab.current_navigation_index
    [all...]
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
ChromiumTestShellActivity.java 113 // TODO(dtrainor): Save/restore the tab state.
120 TestShellTab tab = getActiveTab(); local
121 if (tab != null && tab.getContentView().canGoBack()) {
122 tab.getContentView().goBack();
142 TestShellTab tab = getActiveTab(); local
143 if (tab != null) tab.loadUrlWithSanitization(url);
176 * @return The ContentView of the active tab.
179 TestShellTab tab = getActiveTab() local
    [all...]
  /external/chromium_org/chrome/browser/automation/
automation_provider_win.cc 121 NavigationController* tab = tab_tracker_->GetResource(handle); local
122 return ExternalTabContainer::GetContainerForTab(tab->GetWebContents());
207 "AutomationProvider::OnBrowserMoved called with invalid tab handle.";
229 NavigationController* tab = tab_tracker_->GetResource(handle); local
230 tab->LoadURL(
244 NavigationController* tab = tab_tracker_->GetResource(handle); local
245 tab->GoToIndex(navigation_index);
260 NavigationController* tab = tab_tracker_->GetResource(handle); local
261 if (tab->GetWebContents() && tab->GetWebContents()->GetRenderViewHost())
    [all...]
automation_util.h 43 // Returns the tab at |tab_index| within the browser at |browser_index| in the
52 // Returns the browser that contains the given tab, or NULL if none exists.
53 Browser* GetBrowserForTab(content::WebContents* tab);
55 // Gets the size and value of the cookie string for |url| in the given tab.
62 // Sets a cookie for |url| in the given tab. Can be called from any thread.
68 // Deletes a cookie for |url| in the given tab. Can be called from any thread.
97 // Returns a valid automation ID for the given tab.
98 AutomationId GetIdForTab(const content::WebContents* tab);
107 // Gets the tab for the given ID. Returns true on success.
108 bool GetTabForId(const AutomationId& id, content::WebContents** tab);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/js/
tabs.js 6 * Add support for tab pannels on custom elements (tabs, header and content)
60 function initTabPane(tab) {
61 var tabGroup = tab.getAttribute("data-group");
65 var headers = tab.getElementsByTagName('header');
66 var contents = tab.getElementsByTagName('content');
  /external/chromium_org/chrome/test/functional/gtalk/
gtalk_base_test.py 222 def _RunInTab(self, tab, js, xpath=''):
223 """Execute javascript in a given tab.
226 tab: The data object for the Chrome window tab returned by
234 if not tab:
235 logging.debug('Tab not found: %s' % tab)
237 logging.info('Run in tab: %s' % js)
241 tab_index = tab['index'],
242 windex = tab['windex']
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_measurement_unittest.py 18 def MeasurePage(self, page, tab, results):
25 def MeasurePage(self, page, tab, results):
30 def MeasurePage(self, page, tab, results):
31 contents = tab.EvaluateJavaScript('document.body.textContent')
35 def MeasurePage(self, page, tab, results):
37 contents = tab.EvaluateJavaScript('document.body.textContent')
42 def MeasurePage(self, page, tab, results):
43 query = tab.EvaluateJavaScript('window.location.search')
50 def MeasurePage(self, page, tab, results):
139 def RunAction(self, page, tab, previous_action)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 40 private static final String TAB = " ";
58 String tab = indent + TAB; local
82 buf.append(tab);
88 _dumpAsString(tab, verbose, (ASN1Primitive)o, buf);
92 _dumpAsString(tab, verbose, ((ASN1Encodable)o).toASN1Primitive(), buf);
98 String tab = indent + TAB; local
124 buf.append(tab);
130 _dumpAsString(tab, verbose, o.getObject(), buf)
136 String tab = indent + TAB; local
266 String tab = indent + TAB; local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarImplICS.java 223 public Tab newTab() {
224 final android.app.ActionBar.Tab realTab = mActionBar.newTab();
231 public void addTab(Tab tab) {
232 mActionBar.addTab(((TabWrapper) tab).mWrappedTab);
236 public void addTab(Tab tab, boolean setSelected) {
237 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, setSelected);
241 public void addTab(Tab tab, int position)
    [all...]
  /external/chromium/chrome/browser/sessions/
tab_restore_service.h 27 // tabs and windows. When a tab is closed
28 // TabRestoreService::CreateHistoricalTab is invoked and a Tab is created to
29 // represent the tab. Similarly, when a browser is closed, BrowserClosing is
32 // To restore a tab/window from the TabRestoreService invoke RestoreEntryById
48 TAB,
64 // The time when the window or tab was closed.
73 // Represents a previously open tab.
74 struct Tab : public Entry {
75 Tab();
76 virtual ~Tab();
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.h 17 class Tab;
42 Tab* tab) const;
44 Tab* tab);
45 bool IsTabPinned(Tab* tab) const;
61 virtual void ShowContextMenuForTab(Tab* tab,
130 Tab* tab)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Preloader.java 100 PreloadedTabControl tab = s.getTabControl(); local
102 tab.loadUrlIfChanged(url, headers);
103 tab.setQuery(searchBoxQuery);
105 tab.loadUrl(url, headers);
113 PreloadedTabControl tab = s.getTabControl(); local
114 tab.searchBoxCancel();
131 * Return a preloaded tab, and remove it from the preloader. This is used when the
154 new Tab(new PreloadController(mContext), mFactory.createWebView(false)));
172 Tab t = mTabControl.getTab();
  /external/chromium/chrome/browser/ui/login/
login_prompt_win.cc 58 TabContents* tab = GetTabContentsForLogin(); variable
59 if (tab)
60 tab->render_view_host()->set_ignore_input_events(false);
  /external/chromium_org/chrome/browser/
referrer_policy_browsertest.cc 71 // Returns the expected title for the tab with the given (full) referrer and
112 // opens_new_tab: True if this test opens a new tab.
144 content::WebContents* tab = local
146 content::TitleWatcher title_watcher(tab, expected_title);
160 tab->GetRenderViewHost()->ForwardMouseEvent(mouse_event);
162 tab->GetRenderViewHost()->ForwardMouseEvent(mouse_event);
167 tab = tab_added_observer.GetTab();
168 EXPECT_TRUE(tab);
169 content::WaitForLoadStop(tab);
170 EXPECT_EQ(expected_title, tab->GetTitle())
385 content::WebContents* tab = local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/keyboard/
keyboard_utils.js 26 * Converts right/left into tab/shift-tab key events.
46 * Raises tab/shift-tab keyboard events.
69 * Raises shift+tab keyboard events to focus previous element.
79 * Raises tab keyboard events to focus next element.
  /external/chromium_org/chrome/browser/safe_browsing/
client_side_detection_host.h 35 // The caller keeps ownership of the tab object and is responsible for
37 static ClientSideDetectionHost* Create(content::WebContents* tab);
57 virtual void WebContentsDestroyed(content::WebContents* tab) OVERRIDE;
64 explicit ClientSideDetectionHost(content::WebContents* tab);
139 // Unique page ID of the most recent unsafe site that was loaded in this tab
  /external/chromium_org/chrome/browser/ui/webui/
bookmarks_ui_browsertest.cc 28 // Bring up the bookmarks manager tab.
33 void AssertIsBookmarksPage(content::WebContents* tab) {
37 tab,
42 tab,
57 // Bring up the bookmarks manager tab.
79 // Bring up the bookmarks manager tab.
85 // Switch to first tab and run command again.
89 // Ensure the bookmarks ui tab is active.

Completed in 608 milliseconds

<<11121314151617181920>>