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

/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ddecode_huff_cw_binary.cpp214 Int32 tab; local
227 tab = (cw >> 6) - 16;
231 tab = (cw >> 4) - 96 + 8;
235 tab = (cw >> 2) - 480 + 32;
239 tab = cw - 2016 + 56;
242 tab = *(huff_tab1 + tab);
244 pInputStream->usedBits -= (11 - (tab & MASK_LOW16));
245 return ((Int)(tab >> UPPER16));
252 Int32 tab; local
290 Int32 tab; local
332 Int32 tab; local
367 Int32 tab; local
411 Int32 tab; local
446 Int32 tab; local
486 Int32 tab; local
520 Int32 tab; local
570 Int32 tab; local
616 Int32 tab; local
662 Int32 tab; local
[all...]
/frameworks/base/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/android/text/
H A DStaticLayout.java304 boolean tab = false;
362 tab = true;
384 tab = true;
460 choosehtv, fm, tab,
496 choosehtv, fm, tab,
512 choosehtv, fm, tab,
523 source, here, here + 1, fm, tab,
532 choosehtv, fm, tab,
578 choosehtv, fm, tab,
973 Paint.FontMetricsInt fm, boolean tab,
969 out(CharSequence text, int start, int end, int above, int below, int top, int bottom, int v, float spacingmult, float spacingadd, LineHeightSpan[] chooseht, int[] choosehtv, Paint.FontMetricsInt fm, boolean tab, boolean needMultiply, int pstart, byte[] chdirs, int dir, boolean easy, boolean last, boolean includepad, boolean trackpad, float[] widths, int widstart, int widoff, TextUtils.TruncateAt ellipsize, float ellipsiswidth, float textwidth, TextPaint paint) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java47 * Equivalently, selecting a tab will result in a call to
49 * the tab will result in whichHandle being {@link OnTriggerListener#NO_HANDLE}.
106 * Interface definition for a callback to be invoked when a tab is triggered
152 * {@link #tab} is the tab shown on the screen in the default state.
153 * {@link #text} is the view revealed as the user slides the tab out.
159 * Tab alignment - determines which side the tab should be drawn on
174 private final ImageView tab; field in class:SlidingTab.Slider
185 * @param tabId drawable for the tab
190 // Create tab
[all...]

Completed in 80 milliseconds