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

/frameworks/rs/cpu_ref/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/rs/cpu_ref/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/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DScrollingTabContainerView.java39 * This widget implements the dynamic action bar tab behavior that can change across different
117 // Recenter the tab display if we're at a new (scrollable) size.
238 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
241 tabView.attach(this, tab, forAdapter);
258 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
259 TabView tabView = createTabView(tab, false);
273 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
274 final TabView tabView = createTabView(tab, false);
339 void attach(ScrollingTabContainerView parent, ActionBar.Tab tab, boolean forList) { argument
341 mTab = tab;
350 bindTab(ActionBar.Tab tab) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java48 * This widget implements the dynamic action bar tab behavior that can change
126 // Recenter the tab display if we're at a new (scrollable) size.
280 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
281 final TabView tabView = new TabView(getContext(), tab, forAdapter);
297 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
298 TabView tabView = createTabView(tab, false);
312 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
313 final TabView tabView = createTabView(tab, false);
369 public TabView(Context context, ActionBar.Tab tab, boolean forList) { argument
371 mTab = tab;
380 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/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarImplICS.java231 public void addTab(Tab tab) { argument
232 mActionBar.addTab(((TabWrapper) tab).mWrappedTab);
236 public void addTab(Tab tab, boolean setSelected) { argument
237 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, setSelected);
241 public void addTab(Tab tab, int position) { argument
242 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, position);
246 public void addTab(Tab tab, int position, boolean setSelected) { argument
247 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, position, setSelected);
251 public void removeTab(Tab tab) { argument
252 mActionBar.removeTab(((TabWrapper) tab)
266 selectTab(Tab tab) argument
382 TabWrapper(android.app.ActionBar.Tab tab) argument
483 onTabSelected(android.app.ActionBar.Tab tab, android.app.FragmentTransaction ft) argument
490 onTabUnselected(android.app.ActionBar.Tab tab, android.app.FragmentTransaction ft) argument
496 onTabReselected(android.app.ActionBar.Tab tab, android.app.FragmentTransaction ft) argument
[all...]
H A DActionBar.java485 * Create and return a new {@link Tab}. This tab will not be included in the action bar until it
500 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list. If
501 * this is the first tab to be added it will become the selected tab.
503 * @param tab Tab to add
505 public abstract void addTab(Tab tab); argument
508 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
510 * @param tab Ta
513 addTab(Tab tab, boolean setSelected) argument
522 addTab(Tab tab, int position) argument
532 addTab(Tab tab, int position, boolean setSelected) argument
540 removeTab(Tab tab) argument
562 selectTab(Tab tab) argument
902 onTabSelected(Tab tab, FragmentTransaction ft) argument
913 onTabUnselected(Tab tab, FragmentTransaction ft) argument
924 onTabReselected(Tab tab, FragmentTransaction ft) argument
[all...]
H A DActionBarImplBase.java156 // Switch tab layout configuration if needed
390 public void addTab(Tab tab) { argument
391 addTab(tab, mTabs.isEmpty());
395 public void addTab(Tab tab, boolean setSelected) { argument
397 mTabScrollView.addTab(tab, setSelected);
398 configureTab(tab, mTabs.size());
400 selectTab(tab);
405 public void addTab(Tab tab, int position) { argument
406 addTab(tab, position, mTabs.isEmpty());
410 public void addTab(Tab tab, in argument
420 removeTab(Tab tab) argument
455 selectTab(Tab tab) argument
919 configureTab(Tab tab, int position) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java506 * This tab will not be included in the action bar until it is added.
521 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
522 * If this is the first tab to be added it will become the selected tab.
524 * @param tab Tab to add
526 public abstract void addTab(Tab tab); argument
529 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
531 * @param tab Ta
534 addTab(Tab tab, boolean setSelected) argument
544 addTab(Tab tab, int position) argument
554 addTab(Tab tab, int position, boolean setSelected) argument
562 removeTab(Tab tab) argument
584 selectTab(Tab tab) argument
973 onTabSelected(Tab tab, FragmentTransaction ft) argument
984 onTabUnselected(Tab tab, FragmentTransaction ft) argument
995 onTabReselected(Tab tab, FragmentTransaction ft) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java219 // Switch tab layout configuration if needed
473 private void configureTab(Tab tab, int position) { argument
474 final TabImpl tabi = (TabImpl) tab;
491 public void addTab(Tab tab) { argument
492 addTab(tab, mTabs.isEmpty());
496 public void addTab(Tab tab, int position) { argument
497 addTab(tab, position, mTabs.isEmpty());
501 public void addTab(Tab tab, boolean setSelected) { argument
503 mTabScrollView.addTab(tab, setSelected);
504 configureTab(tab, mTab
511 addTab(Tab tab, int position, boolean setSelected) argument
526 removeTab(Tab tab) argument
556 selectTab(Tab tab) argument
[all...]

Completed in 190 milliseconds