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

<<11121314151617181920>>

  /external/opencv/cv/src/
cvsegmentation.cpp 338 #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[t1-c1+255] + tab[t2-c2+255] <= isr2
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_keybinding_apitest.cc 109 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/chromium_org/chrome/browser/resources/hangout_services/
thunk.js 39 ['screen', 'window'], sender.tab, sendResponseWithCancelId);
53 sender.tab.id, origin, metaData, doSendResponse);
57 sender.tab.id, origin, doSendResponse);
61 sender.tab.id, origin, true);
66 sender.tab.id, origin, false);
71 sender.tab.id, origin, doSendResponse);
75 sender.tab.id, origin, doSendResponse);
78 stopAllRtpDump(sender.tab.id, origin, function() {
79 chrome.webrtcLoggingPrivate.stop(sender.tab.id, origin, function() {
81 sender.tab.id, origin, doSendResponse)
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
TraceClassVisitor.java 246 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...]
  /frameworks/support/v13/java/android/support/v13/app/
FragmentTabHost.java 208 "No tab content FrameLayout found for id " + mContainerId);
226 // sure this tab's fragment is inactive if it exists. This shouldn't
250 TabInfo tab = mTabs.get(i); local
251 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
252 if (tab.fragment != null && !tab.fragment.isDetached()) {
253 if (tab.tag.equals(currentTab)) {
254 // The fragment for this tab is already there and
256 // as the current tab. Nothing to do
316 TabInfo tab = mTabs.get(i); local
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentTabHost.java 36 * its tab content. When placing this in a view hierarchy, after inflating
38 * to complete the initialization of the tab host.
216 "No tab content FrameLayout found for id " + mContainerId);
234 // sure this tab's fragment is inactive if it exists. This shouldn't
258 TabInfo tab = mTabs.get(i); local
259 tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
260 if (tab.fragment != null && !tab.fragment.isDetached()) {
261 if (tab.tag.equals(currentTab))
324 TabInfo tab = mTabs.get(i); local
    [all...]
  /external/chromium_org/chrome/browser/sync/sessions/
sessions_sync_manager.cc 179 // 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,
653 SessionTab* tab = local
    [all...]
  /external/bison/src/
files.c 63 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'.
177 /* Decompose FILE_NAME in four parts: *BASE, *TAB, and *EXT, the fourth
183 If there is no *EXT, *TAB is NULL. Otherwise, *TAB points to
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
230 const char *base, *tab, *ext; local
    [all...]
  /external/chromium_org/athena/extensions/chrome/
athena_chrome_app_delegate.cc 58 content::WebContents* tab,
60 FileSelectHelper::RunFileChooser(tab, params);
  /external/chromium_org/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h 11 // know anything about the actual tab implementation or model, as that is fairly
45 // Used during tab dragging to turn on/off the overlay window when a tab
56 // the implementation of tab dragging based on whatever model is most
68 // Make room in the tab strip for |tab| at the given x coordinate. Will hide the
69 // new tab button while there's a placeholder. Subclasses need to call the
71 - (void)insertPlaceholderForTab:(TabView*)tab frame:(NSRect)frame;
74 // and restores the new tab button. Subclasses need to call the superclass
81 // The follow return YES if tab dragging/tab tearing (off the tab strip)/windo
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
browser_synced_window_delegate.cc 44 const browser_sync::SyncedTabDelegate* tab) const {
47 if (tab == current)
50 // The window and tab are not always updated atomically, so it's possible
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
background.js 76 function(tab) {
78 tab.id,
  /external/chromium_org/content/browser/resources/media/
webrtc_internals.css 85 .tab-head {
96 .active-tab-head {
101 .tab-body {
108 .active-tab-body {
  /external/chromium_org/content/test/gpu/gpu_tests/
gpu_process.py 30 def ValidateAndMeasurePage(self, page, tab, results):
32 has_gpu_process = tab.EvaluateJavaScript(has_gpu_process_js)
  /external/chromium_org/tools/chrome_proxy/integration_tests/
network_metrics.py 132 def Start(self, page, tab):
136 tab.StartTimelineRecording(opts)
138 def Stop(self, page, tab):
140 tab.StopTimelineRecording()
142 def IterResponses(self, tab):
144 self._events = tab.timeline_model.GetAllEventsOfName('HTTPResponse')
153 def AddResults(self, tab, results):
157 for resp in self.IterResponses(tab):
  /external/chromium_org/tools/telemetry/examples/
telemetry_perf_test.py 24 tab = b.tabs[0]
30 tab.EvaluateJavaScript('%i * 2' % i)
  /external/chromium_org/tools/vim/
filetypes.vim 1 " To get syntax highlighting and tab settings for gyp(i) and DEPS files,
  /external/chromium_org/ui/accessibility/extensions/highcontrast/
background.js 76 toggleSite(sender.tab ? sender.tab.url : 'www.example.com');
80 if (sender.tab) {
81 scheme = getSiteScheme(siteFromUrl(sender.tab.url));
  /packages/apps/Browser/src/com/android/browser/
ComboViewActivity.java 37 private static final String STATE_SELECTED_TAB = "tab";
152 * trick. Normally a tab host has a simple API for supplying a View or
153 * Intent that each tab will show. This is not sufficient for switching
154 * between pages. So instead we make the content part of the tab host
156 * view to show as the tab content. It listens to changes in tabs, and takes
158 * tab changes.
186 public void addTab(ActionBar.Tab tab, Class<?> clss, Bundle args) {
188 tab.setTag(info);
189 tab.setTabListener(this)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
iterators.py 68 tab = ' ' * (level * 4)
69 print >> fp, tab + msg.get_content_type(),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 68 tab = ' ' * (level * 4)
69 print >> fp, tab + msg.get_content_type(),
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/zoom/
popup.js 9 * 1) Set the zoom for a tab using tabs.setZoom()
10 * 2) Read the current zoom of a tab using tabs.getZoom()
11 * 3) Set the zoom mode of a tab using tabs.setZoomSettings()
12 * 4) Read the current zoom mode of a tab using
30 // Find the tabId of the current (active) tab. We could just omit the tabId
32 // tab by default, but for the purposes of this demo we will always use the
37 '[ZoomDemoExtension] Query unexpectedly returned more than 1 tab.');
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ForeignSessionHelper.java 80 * Represents synced foreign tab.
116 ForeignSessionTab tab = new ForeignSessionTab(url, title, timestamp, sessionId); local
117 window.tabs.add(tab);
144 * @return {@code True} iff Tab sync is enabled.
182 * Opens the given foreign tab in a new tab.
183 * @param tab Tab to load the session into.
184 * @param session Session that the target tab belongs to.
185 * @param foreignTab Target tab to open
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
AppBannerManager.java 15 import org.chromium.chrome.browser.Tab;
22 * Manages an AppBannerView for a Tab and its ContentView.
42 /** Tab that the AppBannerView/AppBannerManager is owned by. */
43 private final Tab mTab;
72 * Constructs an AppBannerManager for the given tab.
73 * @param tab Tab that the AppBannerManager will be attached to.
75 public AppBannerManager(Tab tab) {
77 mTab = tab;
    [all...]
  /external/chromium_org/tools/perf/measurements/
endure.py 77 def ValidateAndMeasurePage(self, page, tab, results):
81 self._SampleStats(tab, results)
83 def _SampleStats(self, tab, results):
111 dom_stats = tab.dom_stats
132 stats = v8_object_stats.V8ObjectStatsMetric.GetV8StatsTable(tab, counters)

Completed in 4909 milliseconds

<<11121314151617181920>>