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

<<11121314151617181920>>

  /external/chromium_org/content/test/gpu/gpu_tests/
screenshot_sync.py 22 def ValidateAndMeasurePage(self, page, tab, results):
23 test_success = tab.EvaluateJavaScript('window.__testSuccess')
25 message = tab.EvaluateJavaScript('window.__testMessage')
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
kronecker.c 66 /* In 'tab', only odd-indexed entries are relevant:
68 * tab[BN_lsw(n) & 7]
71 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
116 ret = tab[BN_lsw(A) & 7];
152 ret = ret * tab[BN_lsw(B) & 7];
  /external/chromium_org/tools/perf/metrics/
cpu.py 22 def Start(self, page, tab):
25 def Stop(self, page, tab):
31 def AddResults(self, tab, results, trace_name='cpu_utilization'):
  /external/openssl/crypto/bn/
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];
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionHeaderTable.hxx 44 std::unique_ptr<ELFSectionHeaderTable> tab(new ELFSectionHeaderTable());
64 tab->table.push_back(sh.release());
67 return tab.release();
  /external/chromium_org/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
ChromeShellTestBase.java 95 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/
proxy_settings.css 27 #internet-details-content-area > .subpages-tab-contents {
45 html[highlight=strong] #network-proxy-tab {
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_helper.h 37 typedef TabRestoreService::Tab Tab;
41 // Provides a way for the client to add behavior to the tab restore service
86 Tab* RemoveTabEntryById(SessionID::id_type id);
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,
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
synced_window_delegate_android.h 32 virtual bool IsTabPinned(const SyncedTabDelegate* tab) const OVERRIDE;
  /external/chromium_org/chrome/browser/sync/
open_tabs_ui_delegate.h 34 // 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/sync/sessions/
sessions_sync_manager.h 54 // 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)
158 tab_(tab) {}
160 void set_tab(const SyncedTabDelegate* tab) { tab_ = tab;
164 const SyncedTabDelegate* tab() const { return tab_; } function in class:browser_sync::SessionsSyncManager::TabLink
    [all...]
  /external/chromium_org/chrome/browser/ui/android/tab_model/
tab_model_base.cc 49 TabAndroid* tab = TabAndroid::GetNativeTab(env, jtab); local
51 // Tab#initialize() should have been called by now otherwise we can't push
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) {
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
browser_synced_window_delegate.h 34 const browser_sync::SyncedTabDelegate* tab) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/webui/
metrics_handler.cc 87 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);
100 if (event_name == "Tab.NewTabScriptStart") {
101 UMA_HISTOGRAM_TIMES("Tab.NewTabScriptStart", duration);
102 } else if (event_name == "Tab.NewTabDOMContentLoaded") {
103 UMA_HISTOGRAM_TIMES("Tab.NewTabDOMContentLoaded", duration);
104 } else if (event_name == "Tab.NewTabOnload") {
105 UMA_HISTOGRAM_TIMES("Tab.NewTabOnload", duration);
106 // The new tab page has finished loading; reset it
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
background.js 13 // Show the infobar on the tab where the request was sent.
15 tabId: sender.tab.id,
  /external/chromium_org/components/web_contents_delegate_android/
color_chooser_android.h 28 ColorChooserAndroid(content::WebContents* tab,
  /external/chromium_org/extensions/browser/api/declarative_content/
content_rules_registry.h 45 // Applies all content rules given that a tab was just navigated.
47 content::WebContents* tab,
  /external/chromium_org/tools/perf/benchmarks/
dom_perf.py 41 def ValidateAndMeasurePage(self, page, tab, results):
44 return tab.GetCookieByName('__domperf_finished') == '1'
47 data = json.loads(tab.EvaluateJavaScript('__domperf_result'))
55 tab.EvaluateJavaScript('document.cookie = "__domperf_finished=0"')
peacekeeper.py 27 def WillNavigateToPage(self, page, tab):
54 def ValidateAndMeasurePage(self, _, tab, results):
55 tab.WaitForJavaScriptExpression('_done', 600)
56 result = tab.EvaluateJavaScript('__results')
  /external/chromium_org/tools/telemetry/telemetry/page/
page_test_unittest.py 21 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/opencv/cv/src/
cvadapthresh.cpp 55 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];
cvthresh.cpp 49 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[i] = (uchar)i
    [all...]
  /external/ppp/pppd/
Makefile.sol2 56 rm -f $(OBJS) pppd *~ core y.tab.c y.tab.h
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBar.java 130 * Tab navigation mode. Instead of static title text this mode
603 * Create and return a new {@link Tab}.
604 * This tab will not be included in the action bar until it is added.
612 * @return A new Tab
614 * @see #addTab(Tab)
621 public abstract Tab newTab();
624 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
625 * If this is the first tab to be added it will become the selected tab
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TabHostRule.java 62 INode tab = linear.appendChild(FQCN_TAB_WIDGET); local
63 tab.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
64 tab.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, VALUE_WRAP_CONTENT);
65 tab.setAttribute(ANDROID_URI, ATTR_ID, "@android:id/tabs"); //$NON-NLS-1$
77 String.format("@+id/tab%d", i + 1)); //$NON-NLS-1$

Completed in 1277 milliseconds

<<11121314151617181920>>