Home
last modified time | relevance | path

Searched refs:tabIndex (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
DarmVCM4P2_GetVLCBits.c114 OMX_U8 tabIndex, markerBit; in armVCM4P2_GetVLCBits() local
198 tabIndex = 1; in armVCM4P2_GetVLCBits()
199 while (pRunIndexTableL0[tabIndex] <= unpackRetIndex) in armVCM4P2_GetVLCBits()
201 tabIndex++; in armVCM4P2_GetVLCBits()
203 storeRun = tabIndex - 1; in armVCM4P2_GetVLCBits()
204 storeLevel = unpackRetIndex - pRunIndexTableL0[tabIndex - 1] + 1; in armVCM4P2_GetVLCBits()
235 tabIndex = 1; in armVCM4P2_GetVLCBits()
236 while (pRunIndexTableL1[tabIndex] <= unpackRetIndex) in armVCM4P2_GetVLCBits()
238 tabIndex++; in armVCM4P2_GetVLCBits()
240 storeRun = tabIndex - 1; in armVCM4P2_GetVLCBits()
[all …]
/frameworks/support/design/tests/src/android/support/design/testutils/
DTabLayoutActions.java90 public static ViewAction selectTab(final int tabIndex) {
107 tabLayout.getTabAt(tabIndex).select();
/frameworks/av/media/libstagefright/codecs/aacenc/src/
Dquantize.c245 Word32 tabIndex; in iquantizeLines() local
255 tabIndex = (accu >> (INT_BITS-2-MANT_DIGITS)) & (~MANT_SIZE); in iquantizeLines()
258 s = mTab_4_3[tabIndex]; in iquantizeLines()
/frameworks/base/core/java/android/widget/
DTabWidget.java541 private TabClickListener(int tabIndex) { in TabClickListener() argument
542 mTabIndex = tabIndex; in TabClickListener()
564 void onTabSelectionChanged(int tabIndex, boolean clicked); in onTabSelectionChanged() argument
DTabHost.java166 public void onTabSelectionChanged(int tabIndex, boolean clicked) { in setup()
167 setCurrentTab(tabIndex); in setup()