Searched defs:tab (Results 1 - 9 of 9) sorted by relevance

/frameworks/compile/libbcc/tests/data/src/
H A Dbellard.otccex.c47 int tab, p, c; local
51 tab = malloc(0x100);
52 p = tab;
67 while (p != tab) {
71 free(tab);
/frameworks/compile/linkloader/android/
H A Dtest-librsloader.c38 static struct func_entry_t const tab[] = { local
51 static size_t const tab_size = sizeof(tab) / sizeof(struct func_entry_t);
59 if (name_len == tab[i].name_len && strcmp(name, tab[i].name) == 0) {
60 return tab[i].addr;
/frameworks/av/libvideoeditor/vss/3gpwriter/src/
H A DM4MP4W_Utils.c109 void M4MP4W_table32ToBE(M4OSA_UInt32* tab, M4OSA_UInt32 nb) argument
114 M4MP4W_convertInt32BE(&(tab)[i]);
281 M4OSA_Void M4MP4W_put32_Hi(M4OSA_UInt32* tab, M4OSA_UInt16 Hi) argument
284 *tab &= 0xFFFF;
285 *tab |= Hi<<16;
289 M4OSA_Void M4MP4W_put32_Lo(M4OSA_UInt32* tab, M4OSA_UInt16 Lo) argument
292 *tab &= 0xFFFF0000;
293 *tab |= Lo;
297 M4OSA_UInt16 M4MP4W_get32_Hi(M4OSA_UInt32* tab) argument
300 return (*tab >> 1
304 M4MP4W_get32_Lo(M4OSA_UInt32* tab) argument
[all...]
/frameworks/compile/linkloader/
H A Dmain.cpp114 static func_entry_t const tab[] = { local
127 static size_t const tab_size = sizeof(tab) / sizeof(func_entry_t);
134 if (name_len == tab[i].name_len && strcmp(name, tab[i].name) == 0) {
135 return tab[i].addr;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp842 const VLCtab2 *tab; local
847 /* if(GetTcoeffIntra(code,pTcoef,&tab,stream)!=PV_SUCCESS) return status;*/
850 tab = &PV_DCT3Dtab3[(code >> 6) - 16];
856 tab = &PV_DCT3Dtab4[(code >> 3) - 32];
862 tab = &PV_DCT3Dtab5[(code>>1) - 8];
871 PV_BitstreamFlushBits(stream, tab->len + 1);
872 pTcoef->sign = (code >> (12 - tab->len)) & 1;
873 pTcoef->run = (uint) tab->run; //(tab->val >> 8) & 255;
874 pTcoef->level = (int) tab
1025 const VLCtab2 *tab; local
1204 const VLCtab2 *tab; local
1264 const VLCtab2 *tab; local
1319 const VLCtab2 *tab; local
1392 const VLCtab2 *tab; local
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java46 * This widget implements the dynamic action bar tab behavior that can change
124 // Recenter the tab display if we're at a new (scrollable) size.
275 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
276 final TabView tabView = new TabView(getContext(), tab, forAdapter);
292 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
293 TabView tabView = createTabView(tab, false);
307 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
308 final TabView tabView = createTabView(tab, false);
364 public TabView(Context context, ActionBar.Tab tab, boolean forList) { argument
366 mTab = tab;
375 bindTab(ActionBar.Tab tab) argument
[all...]
H A DSlidingTab.java48 * Equivalently, selecting a tab will result in a call to
50 * the tab will result in whichHandle being {@link OnTriggerListener#NO_HANDLE}.
107 * Interface definition for a callback to be invoked when a tab is triggered
153 * {@link #tab} is the tab shown on the screen in the default state.
154 * {@link #text} is the view revealed as the user slides the tab out.
160 * Tab alignment - determines which side the tab should be drawn on
175 private final ImageView tab; field in class:SlidingTab.Slider
186 * @param tabId drawable for the tab
191 // Create tab
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java500 * This tab will not be included in the action bar until it is added.
515 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
516 * If this is the first tab to be added it will become the selected tab.
518 * @param tab Tab to add
520 public abstract void addTab(Tab tab); argument
523 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
525 * @param tab Ta
528 addTab(Tab tab, boolean setSelected) argument
538 addTab(Tab tab, int position) argument
548 addTab(Tab tab, int position, boolean setSelected) argument
556 removeTab(Tab tab) argument
578 selectTab(Tab tab) argument
878 onTabSelected(Tab tab, FragmentTransaction ft) argument
889 onTabUnselected(Tab tab, FragmentTransaction ft) argument
900 onTabReselected(Tab tab, FragmentTransaction ft) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java212 // Switch tab layout configuration if needed
466 private void configureTab(Tab tab, int position) { argument
467 final TabImpl tabi = (TabImpl) tab;
484 public void addTab(Tab tab) { argument
485 addTab(tab, mTabs.isEmpty());
489 public void addTab(Tab tab, int position) { argument
490 addTab(tab, position, mTabs.isEmpty());
494 public void addTab(Tab tab, boolean setSelected) { argument
496 mTabScrollView.addTab(tab, setSelected);
497 configureTab(tab, mTab
504 addTab(Tab tab, int position, boolean setSelected) argument
519 removeTab(Tab tab) argument
549 selectTab(Tab tab) argument
[all...]

Completed in 128 milliseconds