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

<<11121314151617181920>>

  /packages/apps/Browser/src/com/android/browser/
TabScrollView.java 90 // in case of a configuration change, adjust tab width
129 void addTab(View tab) {
130 mContentView.addView(tab);
131 tab.setActivated(false);
134 void removeTab(View tab) {
135 int ix = mContentView.indexOfChild(tab);
141 mContentView.removeView(tab);
162 // private void animateIn(View tab) {
163 // ObjectAnimator animator = ObjectAnimator.ofInt(tab, "TranslationX", 500, 0);
168 // private void animateOut(final View tab) {
238 View tab = getChildAt(i); local
    [all...]
TabBar.java 67 private Map<Tab, TabView> mTabMap;
100 mTabMap = new HashMap<Tab, TabView>();
110 // tab dimensions
132 // force update of tab bar
146 void updateTabs(List<Tab> tabs) {
149 for (Tab tab : tabs) {
150 TabView tv = buildTabView(tab);
160 // adjust for new tab overlap
209 final Tab tab = ((TabView) view).mTab local
526 Tab tab = mTabControl.getCurrentTab(); local
    [all...]
DataController.java 119 public void loadThumbnail(Tab tab) {
120 mDataHandler.sendMessage(TAB_LOAD_THUMBNAIL, tab);
123 public void deleteThumbnail(Tab tab) {
124 mDataHandler.sendMessage(TAB_DELETE_THUMBNAIL, tab.getId());
127 public void saveThumbnail(Tab tab) {
128 mDataHandler.sendMessage(TAB_SAVE_THUMBNAIL, tab);
180 doLoadThumbnail((Tab) msg.obj)
    [all...]
PageDialogsHandler.java 43 private Tab mPageInfoView;
56 private Tab mSSLCertificateView;
89 void showHttpAuthentication(final Tab tab, final HttpAuthHandler handler, String host, String realm) {
101 mController.onUpdatedSecurityState(tab);
128 * @param tab The tab to show info about
136 void showPageInfo(final Tab tab,
139 if (tab == null) return
    [all...]
NavTabView.java 33 private Tab mTab;
110 protected void setWebView(Tab tab) {
111 mTab = tab;
113 Bitmap image = tab.getScreenshot();
116 if (tab != null) {
117 mImage.setContentDescription(tab.getTitle());
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusOnlyTabWidget.java 59 View tab = null; local
65 tab = v;
72 super.onFocusChange(tab, true);
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusOnlyTabWidget.java 59 View tab = null; local
65 tab = v;
72 super.onFocusChange(tab, true);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
armv4-gf2m.S 39 str r4,[sp,#0] @ tab[0]=0
41 str r5,[sp,#4] @ tab[1]=a1
43 str r6,[sp,#8] @ tab[2]=a2
45 str r7,[sp,#12] @ tab[3]=a1^a2
47 str r8,[sp,#16] @ tab[4]=a4
49 str r9,[sp,#20] @ tab[5]=a1^a4
51 str r4,[sp,#24] @ tab[6]=a2^a4
53 str r7,[sp,#28] @ tab[7]=a1^a2^a4
56 ldr r5,[sp,r8] @ tab[b & 0x7]
58 ldr r7,[sp,r9] @ tab[b >> 3 & 0x7
    [all...]
  /external/openssl/crypto/bn/asm/
armv4-gf2m.S 39 str r4,[sp,#0] @ tab[0]=0
41 str r5,[sp,#4] @ tab[1]=a1
43 str r6,[sp,#8] @ tab[2]=a2
45 str r7,[sp,#12] @ tab[3]=a1^a2
47 str r8,[sp,#16] @ tab[4]=a4
49 str r9,[sp,#20] @ tab[5]=a1^a4
51 str r4,[sp,#24] @ tab[6]=a2^a4
53 str r7,[sp,#28] @ tab[7]=a1^a2^a4
56 ldr r5,[sp,r8] @ tab[b & 0x7]
58 ldr r7,[sp,r9] @ tab[b >> 3 & 0x7
    [all...]
  /external/chromium/chrome/browser/sessions/
session_service_unittest.cc 93 // Configures the session service with one window with one tab and a single
95 // pinned state of the tab is updated. The session service is then recreated
96 // and the pinned state of the read back tab is returned.
120 SessionTab* tab = windows[0]->tabs[0];
121 helper_.AssertTabEquals(window_id, tab_id, 0, 0, 1, *tab);
123 return tab->pinned;
166 SessionTab* tab = windows[0]->tabs[0]; local
167 helper_.AssertTabEquals(window_id, tab_id, 0, 0, 1, *tab);
169 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
218 SessionTab* tab = windows[0]->tabs[0] local
248 SessionTab* tab = windows[0]->tabs[0]; local
304 SessionTab* tab = rt1; local
338 SessionTab* tab = windows[0]->tabs[0]; local
371 SessionTab* tab = windows[0]->tabs[0]; local
414 SessionTab* tab = windows[0]->tabs[0]; local
453 SessionTab* tab = windows[0]->tabs[0]; local
495 SessionTab* tab = windows[normal_index]->tabs[0]; local
538 SessionTab* tab = windows[0]->tabs[0]; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.c 16 keys, then it computes a^scramble[tab[b]] to get the final perfect hash.
17 tab[] is an array of 1-byte values and scramble[] is a 256-term array of
18 2-byte or 4-byte values. If there are n keys, the length of tab[] is a
32 The final hash is (a XOR scramble[tab[b]]). *scramble* is a
33 predetermined mapping of 0..255 into 0..smax-1. *tab* is an
36 First we fill in all values of *tab* that are used by more than one
46 *scramble* is used because (a^tab[i]) clusters keys around *a*.
98 ub4 *scramble, /* hash is a^scramble[tab[b]] */
223 " rsl = ((state[0]&0x%lx)^scramble[tab[state[1]&0x%lx]]);\n",
246 sprintf(final->line[1], " rsl = ((val>>%ld)^tab[val&0x%lx]);\n"
    [all...]
  /external/opencv/cxcore/include/
cxmisc.h     [all...]
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc 81 // The horizontal offset from one tab to the next, which results in overlapping
85 // Inverse ratio of the width of a tab edge to the width of the tab. When
86 // hovering over the left or right edge of a tab, the drop indicator will
118 bool GdkRectMatchesTabFaviconBounds(const GdkRectangle& gdk_rect, TabGtk* tab) {
119 gfx::Rect favicon_bounds = tab->favicon_bounds();
120 return gdk_rect.x == favicon_bounds.x() + tab->x() &&
121 gdk_rect.y == favicon_bounds.y() + tab->y() &&
179 // Retrieves the width for the Tab at the specified index if an animation is
184 TabGtk* tab = tabstrip->GetTabAt(index) local
376 TabGtk* tab = tabstrip_->GetTabAt(index); variable
511 TabGtk* tab = tabstrip_->GetTabAt(index); variable
572 TabGtk* tab = tabstrip_->GetTabAt(index); variable
680 TabGtk* tab = tabstrip_->GetTabAt(index); variable
821 TabGtk* tab = GetTabAt(i); local
839 TabGtk* tab = GetTabAt(i); local
992 TabGtk* tab = NULL; local
1113 TabGtk* tab = GetTabAt(from_index); local
1129 TabGtk* tab = GetTabAtAdjustForAnimation(index); local
1447 TabGtk* tab = GetTabAt(i); local
1646 TabGtk* tab = GetTabAt(i); local
1676 TabGtk* tab = GetTabAt(drop_index); local
1714 TabGtk* tab = GetTabAt(i); local
1948 TabGtk* tab = GetTabAt(i); local
2083 TabGtk* tab = GetTabAt(i); local
2231 TabGtk* tab = GetTabAt(t); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_light.c 140 m = s->tab;
277 const struct tnl_shine_tab *tab = tnl->_ShineTable[face]; local
282 return powf(dp, tab->shininess);
284 return tab->tab[k] + (f - k) * (tab->tab[k+1] - tab->tab[k]);
386 light_func *tab; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_light.c 140 m = s->tab;
277 const struct tnl_shine_tab *tab = tnl->_ShineTable[face]; local
282 return powf(dp, tab->shininess);
284 return tab->tab[k] + (f - k) * (tab->tab[k+1] - tab->tab[k]);
386 light_func *tab; local
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_service_unittest.cc 102 // Configures the session service with one window with one tab and a single
104 // pinned state of the tab is updated. The session service is then recreated
105 // and the pinned state of the read back tab is returned.
128 SessionTab* tab = windows[0]->tabs[0];
129 helper_.AssertTabEquals(window_id, tab_id, 0, 0, 1, *tab);
131 return tab->pinned;
198 SessionTab* tab = windows[0]->tabs[0]; local
199 helper_.AssertTabEquals(window_id, tab_id, 0, 0, 1, *tab);
201 helper_.AssertNavigationEquals(nav1, tab->navigations[0]);
250 SessionTab* tab = windows[0]->tabs[0] local
281 SessionTab* tab = windows[0]->tabs[0]; local
327 SessionTab* tab = rt1; local
364 SessionTab* tab = windows[0]->tabs[0]; local
397 SessionTab* tab = windows[0]->tabs[0]; local
443 SessionTab* tab = windows[0]->tabs[0]; local
485 SessionTab* tab = windows[0]->tabs[0]; local
530 SessionTab* tab = windows[tabbed_index]->tabs[0]; local
582 SessionTab* tab = windows[tabbed_index]->tabs[0]; local
630 SessionTab* tab = windows[0]->tabs[0]; local
724 SessionTab* tab = windows[0]->tabs[0]; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 83 * associating fragments with the tabs in a tab host. DO NOT USE THIS.
153 mCurrentTabTag = savedInstanceState.getString("tab");
163 TabInfo tab = mTabs.get(i); local
164 tab.fragment = mManager.findFragmentByTag(tab.tag);
165 if (tab.fragment != null && !tab.fragment.isDetached()) {
166 if (tab.tag.equals(currentTab)) {
167 // The fragment for this tab is already there and
169 // as the current tab. Nothing to do
218 TabInfo tab = mTabs.get(i); local
    [all...]
  /external/chromium_org/chrome/browser/android/
foreign_session_helper.cc 52 const SessionTab &tab = **tab_it; local
54 if (tab.navigations.empty())
58 tab.navigations.at(tab.current_navigation_index);
70 tab.timestamp.ToInternalValue(), tab.tab_id.id());
142 // Tab sync is disabled, so clean up data about collapsed sessions.
214 const SessionTab* tab; local
217 tab_id, &tab)) {
218 LOG(ERROR) << "Failed to load foreign tab."
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/session_restore/
session_restore_api.cc 50 scoped_ptr<tabs::Tab> SessionRestoreGetRecentlyClosedFunction::CreateTabModel(
51 const TabRestoreService::Tab& tab, int selected_index) {
52 scoped_ptr<tabs::Tab> tab_struct(new tabs::Tab);
54 tab.navigations[tab.current_navigation_index];
60 tab_struct->index = tab.tabstrip_index;
61 tab_struct->pinned = tab.pinned;
62 tab_struct->id = tab.id
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
session_model_associator.h 88 // single tab.
104 // Reassociates a single tab with the sync model. Will check if the tab
107 // |tab| will be updated with sync id if necessary.
110 bool AssociateTab(SyncedTabDelegate* const tab, syncer::SyncError* error);
115 // tab info.
131 // Load and associate window and tab data for a foreign session.
161 // Looks up the foreign tab identified by |tab_id| and belonging to foreign
163 // Returns true if the foreign session and tab were found, false otherwise.
166 const SessionTab** tab);
250 const SyncedTabDelegate* tab() const { return tab_; } function in class:browser_sync::SessionModelAssociator::TabLink
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
tabs_api.js 125 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: ' + tabId
    [all...]
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
TestShellToolbar.java 55 * The toolbar will visually represent the state of {@code tab}.
56 * @param tab The TabBase that should be represented.
58 public void showTab(TestShellTab tab) {
60 mTab = tab;
145 public void onLoadProgressChanged(TestShellTab tab, int progress) {
146 if (tab == mTab) TestShellToolbar.this.onLoadProgressChanged(progress);
150 public void onUpdateUrl(TestShellTab tab, String url) {
151 if (tab == mTab) TestShellToolbar.this.onUpdateUrl(url);
155 public void onCloseTab(TestShellTab tab) {
  /external/opencv/cvaux/src/
cvhmmobs.cpp 180 work_t *tab = tab_y + 2; local
185 k0 = ((work_t) is) * tab[-1];
201 buf[0] = DESCALE( is * tab[-2], PASS1_SHIFT );
211 s += temp1[k] * tab[k];
217 tab += m1;
226 s += temp0[k] * tab[k];
229 tab += m1;
244 work_t *tab = tab_x + 2; local
252 k0 = (work_t) (s * tab[-1]);
268 *obs++ = (float) DESCALE( s * tab[-2], PASS2_SHIFT )
377 work_t *tab = tab_y + 2; local
441 work_t *tab = tab_x + 2; local
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
IntentHandlerTests.java 42 Tab tabGoogle = controller.getCurrentTab();
43 assertNotNull("Current tab (google.com", tabGoogle);
48 Tab tabMaps = controller.getCurrentTab();
50 assertNotNull("Current tab (maps.google.com)", tabMaps);
62 Tab tabGoogle = controller.getCurrentTab();
74 Tab currentTab = controller.getCurrentTab();
89 Tab tabGoogle = controller.getCurrentTab();
90 assertNotNull("Current tab (google.com", tabGoogle);
95 Tab tabMaps = controller.getCurrentTab();
109 * bypassing Tab, Controller, etc.
154 Tab tab = getActivity().getController().getCurrentTab(); local
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.cc 37 TabContextMenuContents(BaseTab* tab,
42 controller->tabstrip_->GetModelIndexOfBaseTab(tab))),
43 tab_(tab),
112 // The tab we're showing a menu for.
160 BaseTab* tab) const {
161 int model_index = tabstrip_->GetModelIndexOfBaseTab(tab);
168 BaseTab* tab) const {
169 int model_index = tabstrip_->GetModelIndexOfBaseTab(tab);
176 BaseTab* tab) {
177 int model_index = tabstrip_->GetModelIndexOfBaseTab(tab);
252 BaseTab* tab = tabstrip_->base_tab_at_tab_index(tab_index); local
    [all...]

Completed in 1620 milliseconds

<<11121314151617181920>>