Home
last modified time | relevance | path

Searched refs:ta (Results 1 – 17 of 17) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DYuvTest.java112 Allocation ta = Allocation.createSized(mRS, Element.U8(mRS), tmp.length); in testV17() local
113 ta.copyFrom(tmp); in testV17()
116 syuv.setInput(ta); in testV17()
129 ta.destroy(); in testV17()
151 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT); in test_NV21() local
162 ta.copyFrom(tmp); in test_NV21()
166 syuv.setInput(ta); in test_NV21()
170 script.set_mInput(ta); in test_NV21()
180 ta.destroy(); in test_NV21()
202 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT); in test_YV12() local
[all …]
/cts/tests/tests/view/src/android/view/cts/
DContextThemeWrapperTest.java78 TypedArray ta = in testAccessTheme() local
82 verifyIdenticalTextAppearanceStyle(ta); in testAccessTheme()
144 private void verifyIdenticalTextAppearanceStyle(TypedArray ta) { in verifyIdenticalTextAppearanceStyle() argument
151 assertEquals(expectedTa.getIndexCount(), ta.getIndexCount()); in verifyIdenticalTextAppearanceStyle()
153 ta.getColor(R.styleable.TextAppearance_textColor, defValue)); in verifyIdenticalTextAppearanceStyle()
155 ta.getColor(R.styleable.TextAppearance_textColorHint, defValue)); in verifyIdenticalTextAppearanceStyle()
157 ta.getColor(R.styleable.TextAppearance_textColorLink, defValue)); in verifyIdenticalTextAppearanceStyle()
159 ta.getColor(R.styleable.TextAppearance_textColorHighlight, defValue)); in verifyIdenticalTextAppearanceStyle()
161 ta.getDimension(R.styleable.TextAppearance_textSize, defValue), 0.0f); in verifyIdenticalTextAppearanceStyle()
163 ta.getInt(R.styleable.TextAppearance_textStyle, defValue)); in verifyIdenticalTextAppearanceStyle()
/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSYuvTest.java98 Allocation ta = Allocation.createSized(mRS, Element.U8(mRS), tmp.length); in testV17() local
99 ta.copyFrom(tmp); in testV17()
102 syuv.setInput(ta); in testV17()
125 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT); in test_YV12() local
138 ta.copyFrom(tmp); in test_YV12()
140 syuv.setInput(ta); in test_YV12()
164 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT); in test_NV21() local
175 ta.copyFrom(tmp); in test_NV21()
177 syuv.setInput(ta); in test_NV21()
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DCustomDrawableTest.java64 final TypedArray ta; in inflate() local
66 ta = theme.obtainStyledAttributes(attrs, ATTRS, 0, 0); in inflate()
68 ta = r.obtainAttributes(attrs, ATTRS); in inflate()
71 mColor = ta.getColor(0, Color.BLACK); in inflate()
/cts/hostsidetests/services/activityandwindowmanager/activitymanager/app/src/android/server/cts/
DFontScaleActivity.java48 TypedArray ta = getTheme().obtainStyledAttributes(attrs, in dumpFontSize() local
51 final int fontPixelSize = ta.getDimensionPixelSize(0, -1); in dumpFontSize()
58 ta.recycle(); in dumpFontSize()
/cts/tests/tests/telephony/src/android/telephony/cts/
DCellInfoTest.java145 int ta = cellSignalStrengthLte.getTimingAdvance(); in verifyLteInfo() local
146 assertTrue("getTimingAdvance() invalid [0-1282] | Integer.MAX_VALUE, ta=" + ta, in verifyLteInfo()
147 ta == Integer.MAX_VALUE || (ta >= 0 && ta <=1282)); in verifyLteInfo()
/cts/tests/tests/content/src/android/content/res/cts/
DResources_ThemeTest.java88 final TypedArray ta = mResTheme.obtainStyledAttributes(new int[] { R.attr.testString }); in testObtainStyledAttributesWithInlineStringInTheme() local
89 assertNotNull(ta); in testObtainStyledAttributesWithInlineStringInTheme()
90 assertEquals(1, ta.length()); in testObtainStyledAttributesWithInlineStringInTheme()
91 assertEquals(TypedValue.TYPE_STRING, ta.getType(0)); in testObtainStyledAttributesWithInlineStringInTheme()
92 assertEquals("This is a string", ta.getString(0)); in testObtainStyledAttributesWithInlineStringInTheme()
DTypedArrayTest.java242 final TypedArray ta = getContext().getResources().obtainAttributes(set, in testNonResourceString() local
244 assertEquals(1, ta.getIndexCount()); in testNonResourceString()
245 assertEquals(EXPECTED_NON_RESOURCE_STRING, ta.getNonResourceString( in testNonResourceString()
247 ta.recycle(); in testNonResourceString()
260 final TypedArray ta = theme.obtainStyledAttributes(parser, R.styleable.style1, 0, 0); in testEmptyXmlAttributeDoesNotFallbackToTheme() local
262 assertTrue(ta.hasValueOrEmpty(R.styleable.style1_type1)); in testEmptyXmlAttributeDoesNotFallbackToTheme()
263 assertEquals(TypedValue.TYPE_NULL, ta.getType(R.styleable.style1_type1)); in testEmptyXmlAttributeDoesNotFallbackToTheme()
265 ta.recycle(); in testEmptyXmlAttributeDoesNotFallbackToTheme()
DResourcesTest.java113 final TypedArray ta = mResources.obtainTypedArray(R.array.string); in testObtainTypedArray() local
114 assertEquals(3, ta.length()); in testObtainTypedArray()
115 assertEquals("Test String 1", ta.getString(0)); in testObtainTypedArray()
116 assertEquals("Test String 2", ta.getString(1)); in testObtainTypedArray()
117 assertEquals("Test String 3", ta.getString(2)); in testObtainTypedArray()
118 assertEquals(mResources, ta.getResources()); in testObtainTypedArray()
/cts/tests/app/src/android/app/cts/
DDialogTest.java104 TypedArray ta = in testConstructor() local
106 assertTextAppearanceStyle(ta); in testConstructor()
109 ta = w.getContext().getTheme().obtainStyledAttributes(R.styleable.TextAppearance); in testConstructor()
110 assertTextAppearanceStyle(ta); in testConstructor()
127 private void assertTextAppearanceStyle(TypedArray ta) { in assertTextAppearanceStyle() argument
134 assertEquals(expectedTa.getIndexCount(), ta.getIndexCount()); in assertTextAppearanceStyle()
136 ta.getColor(R.styleable.TextAppearance_textColor, defValue)); in assertTextAppearanceStyle()
138 ta.getColor(R.styleable.TextAppearance_textColorHint, defValue)); in assertTextAppearanceStyle()
140 ta.getColor(R.styleable.TextAppearance_textColorLink, defValue)); in assertTextAppearanceStyle()
142 ta.getColor(R.styleable.TextAppearance_textColorHighlight, defValue)); in assertTextAppearanceStyle()
[all …]
DAlertDialog_BuilderTest.java108 TypedArray ta = themedContext.obtainStyledAttributes(attrs); in testConstructorWithThemeId() local
109 assertEquals(20, ta.getInt(0, 0)); in testConstructorWithThemeId()
/cts/tests/tests/media/res/raw/
Dsegment000001_scrambled.ts807 z�w_��-}J���pK���8�7�ReR< re�웘$h����=4�u-"dmMy(�l�z��G���c*�=ta� �
3245 …����������������������G��-�����������������������������������������������6tac�-�x��H��-GF�|R\Ed%…
3416 …N�ݹ��m��������MA�T�����G��������������������������������������IÕ�f�{4ta�����u(jس8Uv����_n…
Dsegment000001.ts2811 �m�\��G�=t�dO+�,����� w��ta�� Z�� %�`]qr�%�ا��"�t�Jqg���$D2�4׻��'^v�t��(4�v��(=wՏ�R…
Dfootball_qvga.yuv16 …agmt}�����������������|p����T)D���SD��r;��ty|y{�������������������������ta]ahmpw~{trttsnWBAJSPR…
41 …������������mc~��me�����������z^QUXYYY\]\\[XX[]^^^_`bcbbm}������������Ȼ���ta\_cb_`bcbc``b_]^___][…
63 …125332034410236=GMOSSRQMRZZVUUhuuwy{{z~~L)y��d:����������}depv�������������ta]aghikmjikjgfeddddgjh…
84 …W]b`bcf���d������}fcjiedfgikkkn{������������������}tf^`dccegknlikmjnvxy���ta[^ahnkgkorx����viddfg…
121 …puwyz|yqqtssrmjjs�xlooijnruwxwvvvvwyz{|zxwtsstuttsttsrngdffeccba`aba�������ta`bcegigdddddddccccccc…
141 …k��~wmZ?27:634=G@6AGH\iecflsvwvroou�������k���������������Ԛ]61CPX_imip�����ta`[J<;COW_hiffikida]WZ…
153 …dz�yrsk`YPYdeaUC80<UV[pzqb]^43��xevyv}�������u~���������nP89FOV[bmqi�������ta\`ghea\aff^Y]a`_^XQJI…
200 …jgdeb`cdda_agrwsmfZL>.N��QNX_he6_����������������x:0AH;9{�y���h47B-B��|{��e6.:dncJ/368Ocb^u�ta��C
214 …��pnlkihiiknoommlnqtttrmkjknsusqnmopswz}}{xsqruwwvvtroqwv{�����������}{ta? %EPIJPQE?LYWNQZ]Z]f…
221 …���utukms~~nlrod`fmqponmoqruxwuvxxxyzxxyxxxyywuuvutvvsssrtw|������iW\js��ta^^VV_aajrwy|���������…
[all …]
/cts/tests/tests/media/assets/
DfileSequence1.ts2310 ���0��t��xX�<��cɃ(/��`��u�HPG¶�H����@D֝^ � Fc�V^�B�!��,�#������N��ta�@a�'� �j����?�GA5�…
Dsegment000001.ts2811 �m�\��G�=t�dO+�,����� w��ta�� Z�� %�`]qr�%�ا��"�t�Jqg���$D2�4׻��'^v�t��(4�v��(=wՏ�R…
DfileSequence0.ts2328 …� 3~�d�hJ68�_������@�����$�Hw�!�q�_�V���g�&�U �'��bʍ5��~0Q����ta�4*�&żJ�DK a)��<…