Searched refs:tab (Results 251 - 275 of 721) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
H A DChromeShellTestBase.java95 ChromeShellTab tab = activity.getActiveTab();
96 if (tab != null) {
97 isLoaded.set(!tab.isLoading()
98 && !TextUtils.isEmpty(tab.getContentViewCore()
126 * Navigates the currently active tab to a sanitized version of {@code url}.
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dproxy_settings.css27 #internet-details-content-area > .subpages-tab-contents {
45 html[highlight=strong] #network-proxy-tab {
/external/chromium_org/chrome/browser/resources/memory_internals/
H A Dmemory_internals.js67 // Append each tab's history.
133 function JoinLinks(tab) {
135 for (var l in tab['history']) {
136 var history = tab['history'][l];
140 if (l == tab['index']) {
/external/chromium_org/chrome/browser/sessions/
H A Dtab_restore_service_helper.h41 // Provides a way for the client to add behavior to the tab restore service
102 // tab/window closes from the previous session are added to the back.
111 // identifies a tab, then the iterator position of the Window in which the Tab
121 // Populates the tab's navigations from the NavigationController, and its
123 void PopulateTab(Tab* tab,
129 // tab. If |delegate| is NULL, this creates a new window for the entry. This
130 // returns the TabRestoreServiceDelegate into which the tab was restored.
131 // |disposition| will be respected, but if it is UNKNOWN then the tab's
133 // created for this tab, it will be created on the desktop specified by
135 // WebContents of the restored tab
[all...]
/external/chromium_org/chrome/browser/sync/glue/
H A Dsynced_window_delegate.h56 // Returns true iff the provided tab is currently "pinned" in the tab strip.
57 virtual bool IsTabPinned(const SyncedTabDelegate* tab) const = 0;
62 // Return the tab id for the tab at |index|.
/external/chromium_org/chrome/browser/sync/
H A Dopen_tabs_ui_delegate.h34 // Looks up the foreign tab identified by |tab_id| and belonging to foreign
36 // Returns true if the foreign session and tab were found, false otherwise.
39 const SessionTab** tab) = 0;
/external/chromium_org/chrome/browser/ui/webui/
H A Dmetrics_handler.cc87 WebContents* tab = web_ui()->GetWebContents(); local
89 // Not all new tab pages get timed. In those cases, we don't have a
91 CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(tab);
106 // The new tab page has finished loading; reset it.
107 CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(tab);
114 content::Source<WebContents>(tab),
/external/chromium_org/chrome/common/extensions/docs/static/js/
H A Dtabs.js6 * 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/ui/accessibility/extensions/highcontrast/
H A Dpopup.js119 var tab = window.tabs[i];
120 if (tab.active) {
121 if (isDisallowedUrl(tab.url)) {
125 site = siteFromUrl(tab.url);
/external/opencv/cv/src/
H A Dcvadapthresh.cpp55 uchar tab[768]; local
81 tab[i] = (uchar)(i - 255 > -idelta ? maxValue : 0);
84 tab[i] = (uchar)(i - 255 <= -idelta ? maxValue : 0);
93 d[j] = tab[s[j] - m[j] + 255];
H A Dcvthresh.cpp49 uchar tab[256]; local
55 tab[i] = 0;
57 tab[i] = maxval;
61 tab[i] = maxval;
63 tab[i] = 0;
67 tab[i] = (uchar)i;
69 tab[i] = thresh;
73 tab[i] = 0;
75 tab[i] = (uchar)i;
79 tab[
[all...]
H A Dcvsegmentation.cpp338 #define cdiff(ofs0) (tab[c0-dptr[ofs0]+255] + \
339 tab[c1-dptr[(ofs0)+1]+255] + tab[c2-dptr[(ofs0)+2]+255] >= isr22)
350 int tab[768]; local
378 tab[i] = (i - 255)*(i - 255);
477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
483 if( tab[t0-c0+255] + tab[t
[all...]
/external/ppp/pppd/
H A DMakefile.sol256 rm -f $(OBJS) pppd *~ core y.tab.c y.tab.h
/external/chromium_org/chrome/browser/sync/sessions/
H A Dsessions_sync_manager.h54 // An interface defining the ways in which local open tab events can interact
55 // with session sync. All local tab events flow to sync via this interface.
118 const SessionTab** tab) OVERRIDE;
134 // Return the virtual URL of the current tab, even if it's pending.
137 // Return the favicon url of the current tab, even if it's pending.
151 // Keep all the links to local tab data in one place. A tab_node_id and tab
156 TabLink(int tab_node_id, const SyncedTabDelegate* tab) argument
158 tab_(tab) {}
160 void set_tab(const SyncedTabDelegate* tab) { tab argument
164 const SyncedTabDelegate* tab() const { return tab_; } function in class:browser_sync::SessionsSyncManager::TabLink
[all...]
H A Dsessions_sync_manager.cc179 // the tab count is 0 or the window is NULL, the browser is about to be
188 // Note: We don't bother to set selected tab index anymore. We still
205 // GetTabAt can return a null tab; in that case just skip it.
212 // Note: We cannot check if a tab is valid if it has no WebContents.
213 // We assume any such tab is valid and leave the contents of
228 // If the tab is valid, it would have been added to the tracker either
232 // the tab's presence in the tracker.
233 const SessionTab* tab = NULL; local
234 if (session_tracker_.LookupSessionTab(local_tag, tab_id, &tab)) {
266 void SessionsSyncManager::AssociateTab(SyncedTabDelegate* const tab, argument
536 TombstoneTab( const sync_pb::SessionSpecifics& tab) argument
653 SessionTab* tab = local
759 RefreshFaviconVisitTimesFromForeignTab( const sync_pb::SessionTab& tab, const base::Time& modification_time) argument
867 GetForeignTab( const std::string& tag, const SessionID::id_type tab_id, const SessionTab** tab) argument
[all...]
/external/chromium_org/chrome/browser/ui/android/tab_model/
H A Dtab_model_base.cc49 TabAndroid* tab = TabAndroid::GetNativeTab(env, jtab); local
53 DCHECK(tab);
55 tab->SetWindowSessionID(GetSessionId());
74 TabAndroid* tab = GetTabAt(index); local
75 return tab == NULL ? NULL : tab->web_contents();
128 VLOG(0) << "Failed to create java tab";
131 TabAndroid* tab = TabAndroid::GetNativeTab(env, obj.obj()); local
132 if (!tab) {
133 VLOG(0) << "Failed to create java tab";
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
H A Dbg.js34 // Map of tab numbers to notes on a scale.
79 // chrome.windows.onRemoved - can't suppress the tab removed that comes first
264 function tabNavigated(tabId, changeInfo, tab) {
269 //console.log(JSON.stringify(changeInfo) + JSON.stringify(tab));
277 console.log(JSON.stringify(tab));
283 match = re.exec(tab.url);
328 var url = tab.url;
331 url = tab.url.substring(0, query);
333 console.log(tab.url);
351 chrome.tabs.get(tabId, function(tab) {
[all...]
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_test_unittest.py21 def ValidateAndMeasurePage(self, page, tab, results):
29 def ValidateAndMeasurePage(self, page, tab, results):
39 def ValidateAndMeasurePage(self, page, tab, results):
40 contents = tab.EvaluateJavaScript('document.body.textContent')
47 def ValidateAndMeasurePage(self, page, tab, results):
49 contents = tab.EvaluateJavaScript('document.body.textContent')
55 def ValidateAndMeasurePage(self, page, tab, results):
56 query = tab.EvaluateJavaScript('window.location.search')
67 def ValidateAndMeasurePage(self, page, tab, results):
/external/chromium_org/chrome/browser/extensions/
H A Dextension_keybinding_apitest.cc109 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
110 ASSERT_TRUE(tab);
112 EXPECT_FALSE(IsGrantedForTab(extension, tab));
119 EXPECT_TRUE(IsGrantedForTab(extension, tab));
124 tab,
137 tab,
181 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
184 tab,
212 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
213 ASSERT_TRUE(tab);
285 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
331 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
387 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DTraceClassVisitor.java246 buf.append(tab)
252 buf.append(tab)
272 buf.append(tab).append("OUTERCLASS ");
316 buf.append(tab).append("// access flags ");
318 buf.append(tab);
344 buf.append(tab).append("// DEPRECATED\n");
346 buf.append(tab).append("// access flags ").append(access).append('\n');
348 buf.append(tab);
354 buf.append(tab)
360 buf.append(tab);
[all...]
/external/chromium_org/chrome/browser/resources/history/
H A Dother_devices.js221 var tab = win.tabs[j];
222 if (tab.title.toLowerCase().indexOf(this.searchText_) != -1) {
224 tab.hidden = false;
226 tab.hidden = true;
257 var tab = win.tabs[j];
258 if (tab.hidden)
263 var a = createElementWithClassName('a', 'device-tab-entry');
264 a.href = tab.url;
265 a.style.backgroundImage = getFaviconImageSet(tab.url);
266 this.addHighlightedText_(a, tab
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Dtabs_api.js125 appendToLog('tab: ' + tabId + ' removed.');
158 chrome.tabs.onCreated.addListener(function(tab) {
160 'tabs.onCreated -- window: ' + tab.windowId + ' tab: ' + tab.id +
161 ' title: ' + tab.title + ' index ' + tab.index + ' url ' + tab.url);
167 'tabs.onAttached -- window: ' + props.newWindowId + ' tab: ' + tabId +
174 'tabs.onMoved -- window: ' + props.windowId + ' tab
[all...]
/external/bison/src/
H A Dfiles.c63 If --output=dir/foo.tab.c was specified, DIR_PREFIX is `dir/',
64 ALL_BUT_EXT is `dir/foo.tab', and ALL_BUT_TAB_EXT is `dir/foo'.
67 ALL_BUT_EXT = `foo.tab' and ALL_BUT_TAB_EXT = `foo'.
184 `.tab' or `_tab' if present right before *EXT, or is NULL. *TAB
190 '/tmp/foo.tab.c' -> *BASE = 'foo.tab.c', *TAB = '.tab.c', *EXT =
195 'tab.c' -> *BASE = 'tab.c', *TAB = NULL, *EXT = '.c'
197 '.tab
204 file_name_split(const char *file_name, const char **base, const char **tab, const char **ext) argument
230 const char *base, *tab, *ext; local
[all...]
/external/chromium_org/athena/extensions/chrome/
H A Dathena_chrome_app_delegate.cc58 content::WebContents* tab,
60 FileSelectHelper::RunFileChooser(tab, params);
57 RunFileChooser( content::WebContents* tab, const content::FileChooserParams& params) argument
/external/chromium_org/chrome/browser/ui/sync/
H A Dbrowser_synced_window_delegate.cc44 const browser_sync::SyncedTabDelegate* tab) const {
47 if (tab == current)
50 // The window and tab are not always updated atomically, so it's possible

Completed in 550 milliseconds

<<11121314151617181920>>