Searched defs:tab (Results 1 - 14 of 14) 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/rs/cpu_ref/linkloader/
H A Dmain.cpp112 static func_entry_t const tab[] = { local
125 static size_t const tab_size = sizeof(tab) / sizeof(func_entry_t);
132 if (name_len == tab[i].name_len && strcmp(name, tab[i].name) == 0) {
133 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.java47 * This widget implements the dynamic action bar tab behavior that can change
125 // Recenter the tab display if we're at a new (scrollable) size.
279 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
280 final TabView tabView = new TabView(getContext(), tab, forAdapter);
296 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
297 TabView tabView = createTabView(tab, false);
311 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
312 final TabView tabView = createTabView(tab, false);
368 public TabView(Context context, ActionBar.Tab tab, boolean forList) { argument
370 mTab = tab;
379 bindTab(ActionBar.Tab tab) argument
[all...]
H A DSlidingTab.java49 * Equivalently, selecting a tab will result in a call to
51 * the tab will result in whichHandle being {@link OnTriggerListener#NO_HANDLE}.
113 * Interface definition for a callback to be invoked when a tab is triggered
159 * {@link #tab} is the tab shown on the screen in the default state.
160 * {@link #text} is the view revealed as the user slides the tab out.
166 * Tab alignment - determines which side the tab should be drawn on
181 private final ImageView tab; field in class:SlidingTab.Slider
192 * @param tabId drawable for the tab
197 // Create tab
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DScrollingTabContainerView.java50 * This widget implements the dynamic action bar tab behavior that can change across different
132 // Recenter the tab display if we're at a new (scrollable) size.
288 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
289 final TabView tabView = new TabView(getContext(), tab, forAdapter);
305 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
306 TabView tabView = createTabView(tab, false);
320 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
321 final TabView tabView = createTabView(tab, false);
381 public TabView(Context context, ActionBar.Tab tab, boolean forList) { argument
383 mTab = tab;
399 bindTab(ActionBar.Tab tab) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java605 * This tab will not be included in the action bar until it is added.
625 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
626 * If this is the first tab to be added it will become the selected tab.
628 * @param tab Tab to add
635 public abstract void addTab(Tab tab); argument
638 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
640 * @param tab Ta
648 addTab(Tab tab, boolean setSelected) argument
663 addTab(Tab tab, int position) argument
678 addTab(Tab tab, int position, boolean setSelected) argument
691 removeTab(Tab tab) argument
728 selectTab(Tab tab) argument
1279 onTabSelected(Tab tab, FragmentTransaction ft) argument
1290 onTabUnselected(Tab tab, FragmentTransaction ft) argument
1301 onTabReselected(Tab tab, FragmentTransaction ft) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java324 public void addTab(Tab tab) { argument
330 public void addTab(Tab tab, boolean setSelected) { argument
336 public void addTab(Tab tab, int position) { argument
342 public void addTab(Tab tab, int position, boolean setSelected) { argument
348 public void removeTab(Tab tab) { argument
366 public void selectTab(Tab tab) { argument
H A DWindowDecorActionBar.java262 // Switch tab layout configuration if needed
520 private void configureTab(Tab tab, int position) { argument
521 final TabImpl tabi = (TabImpl) tab;
538 public void addTab(Tab tab) { argument
539 addTab(tab, mTabs.isEmpty());
543 public void addTab(Tab tab, int position) { argument
544 addTab(tab, position, mTabs.isEmpty());
548 public void addTab(Tab tab, boolean setSelected) { argument
550 mTabScrollView.addTab(tab, setSelected);
551 configureTab(tab, mTab
558 addTab(Tab tab, int position, boolean setSelected) argument
573 removeTab(Tab tab) argument
603 selectTab(Tab tab) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java604 * This tab will not be included in the action bar until it is added.
624 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
625 * If this is the first tab to be added it will become the selected tab.
627 * @param tab Tab to add
634 public abstract void addTab(Tab tab); argument
637 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
639 * @param tab Ta
647 addTab(Tab tab, boolean setSelected) argument
662 addTab(Tab tab, int position) argument
677 addTab(Tab tab, int position, boolean setSelected) argument
690 removeTab(Tab tab) argument
727 selectTab(Tab tab) argument
1290 onTabSelected(Tab tab, FragmentTransaction ft) argument
1301 onTabUnselected(Tab tab, FragmentTransaction ft) argument
1312 onTabReselected(Tab tab, FragmentTransaction ft) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java340 public void addTab(Tab tab) { argument
346 public void addTab(Tab tab, boolean setSelected) { argument
352 public void addTab(Tab tab, int position) { argument
358 public void addTab(Tab tab, int position, boolean setSelected) { argument
364 public void removeTab(Tab tab) { argument
382 public void selectTab(Tab tab) { argument
H A DWindowDecorActionBar.java272 // Switch tab layout configuration if needed
530 private void configureTab(Tab tab, int position) { argument
531 final TabImpl tabi = (TabImpl) tab;
548 public void addTab(Tab tab) { argument
549 addTab(tab, mTabs.isEmpty());
553 public void addTab(Tab tab, int position) { argument
554 addTab(tab, position, mTabs.isEmpty());
558 public void addTab(Tab tab, boolean setSelected) { argument
560 mTabScrollView.addTab(tab, setSelected);
561 configureTab(tab, mTab
568 addTab(Tab tab, int position, boolean setSelected) argument
583 removeTab(Tab tab) argument
613 selectTab(Tab tab) argument
[all...]
/frameworks/base/media/java/android/media/
H A DClosedCaptionRenderer.java254 getMemory().tab(tabs);
612 void tab(int tabs) { method in class:CCParser.CCMemory
/frameworks/rs/api/
H A Dgen_runtime.cpp430 string tab(int n) { return string(n * 4, ' '); } function in namespace:__anon1461
531 file << tab(2) << p.javaBaseType << "[] " << p.javaArrayName << " = new " << p.javaBaseType
533 file << tab(2) << p.javaAllocName << ".copyTo(" << p.javaArrayName << ");\n";
862 mJavaFile << tab(1) << "private ScriptC_" << mTestName << " script;\n";
863 mJavaFile << tab(1) << "private ScriptC_" << mRelaxedTestName << " scriptRelaxed;\n\n";
865 mJavaFile << tab(1) << "@Override\n";
866 mJavaFile << tab(1) << "protected void setUp() throws Exception {\n";
867 mJavaFile << tab(2) << "super.setUp();\n";
868 mJavaFile << tab(2) << "script = new ScriptC_" << mTestName << "(mRS);\n";
869 mJavaFile << tab(
[all...]

Completed in 990 milliseconds