/frameworks/av/libvideoeditor/vss/3gpwriter/src/ |
M4MP4W_Utils.c | 109 void M4MP4W_table32ToBE(M4OSA_UInt32* tab, M4OSA_UInt32 nb) 114 M4MP4W_convertInt32BE(&(tab)[i]); 281 M4OSA_Void M4MP4W_put32_Hi(M4OSA_UInt32* tab, M4OSA_UInt16 Hi) 284 *tab &= 0xFFFF; 285 *tab |= Hi<<16; 289 M4OSA_Void M4MP4W_put32_Lo(M4OSA_UInt32* tab, M4OSA_UInt16 Lo) 292 *tab &= 0xFFFF0000; 293 *tab |= Lo; 297 M4OSA_UInt16 M4MP4W_get32_Hi(M4OSA_UInt32* tab) 300 return (*tab >> 16) & 0xFFFF [all...] |
/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());
|
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();
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
FocusOnlyTabWidget.java | 59 View tab = null; local 65 tab = v; 72 super.onFocusChange(tab, true);
|
/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...] |
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/opencv/cxcore/include/ |
cxmisc.h | [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/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...] |
/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/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/compiler-rt/lib/tsan/rtl/ |
tsan_fd.cc | 35 atomic_uintptr_t tab[kTableSizeL1]; member in struct:__tsan::FdContext 73 atomic_uintptr_t *pl1 = &fdctx.tab[fd / kTableSizeL2]; 122 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); local 123 if (tab == 0) 126 FdDesc *d = &tab[l2]; 134 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); local 135 if (tab == 0) 137 if (addr >= (uptr)tab && addr < (uptr)(tab + kTableSizeL2)) [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 264 String tab = indent + TAB; local [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
ActionBarImplICS.java | 210 public Tab newTab() { 211 final android.app.ActionBar.Tab realTab = mActionBar.newTab(); 218 public void addTab(Tab tab) { 219 mActionBar.addTab(((TabWrapper) tab).mWrappedTab); 223 public void addTab(Tab tab, boolean setSelected) { 224 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, setSelected); 228 public void addTab(Tab tab, int position) [all...] |
/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);
|