Searched defs:tab (Results 1 - 13 of 13) 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/rs/driver/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/driver/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.
235 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
238 tabView.attach(this, tab, forAdapter);
255 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
256 TabView tabView = createTabView(tab, false);
270 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
271 final TabView tabView = createTabView(tab, false);
336 void attach(ScrollingTabContainerView parent, ActionBar.Tab tab, boolean forList) { argument
338 mTab = tab;
347 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.java218 public void addTab(Tab tab) { argument
219 mActionBar.addTab(((TabWrapper) tab).mWrappedTab);
223 public void addTab(Tab tab, boolean setSelected) { argument
224 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, setSelected);
228 public void addTab(Tab tab, int position) { argument
229 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, position);
233 public void addTab(Tab tab, int position, boolean setSelected) { argument
234 mActionBar.addTab(((TabWrapper) tab).mWrappedTab, position, setSelected);
238 public void removeTab(Tab tab) { argument
239 mActionBar.removeTab(((TabWrapper) tab)
253 selectTab(Tab tab) argument
351 TabWrapper(android.app.ActionBar.Tab tab) argument
452 onTabSelected(android.app.ActionBar.Tab tab, android.app.FragmentTransaction ft) argument
459 onTabUnselected(android.app.ActionBar.Tab tab, android.app.FragmentTransaction ft) argument
465 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
863 onTabSelected(Tab tab, FragmentTransaction ft) argument
874 onTabUnselected(Tab tab, FragmentTransaction ft) argument
885 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.java214 // Switch tab layout configuration if needed
468 private void configureTab(Tab tab, int position) { argument
469 final TabImpl tabi = (TabImpl) tab;
486 public void addTab(Tab tab) { argument
487 addTab(tab, mTabs.isEmpty());
491 public void addTab(Tab tab, int position) { argument
492 addTab(tab, position, mTabs.isEmpty());
496 public void addTab(Tab tab, boolean setSelected) { argument
498 mTabScrollView.addTab(tab, setSelected);
499 configureTab(tab, mTab
506 addTab(Tab tab, int position, boolean setSelected) argument
521 removeTab(Tab tab) argument
551 selectTab(Tab tab) argument
[all...]

Completed in 513 milliseconds