/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | YuvTest.java | 112 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/ |
D | ContextThemeWrapperTest.java | 79 TypedArray ta = in testAccessTheme() local 83 verifyIdenticalTextAppearanceStyle(ta); in testAccessTheme() 94 TypedArray ta = in testSetTheme() local 96 verifyIdenticalTextAppearanceStyle(ta); in testSetTheme() 158 private void verifyIdenticalTextAppearanceStyle(TypedArray ta) { in verifyIdenticalTextAppearanceStyle() argument 165 assertEquals(expectedTa.getIndexCount(), ta.getIndexCount()); in verifyIdenticalTextAppearanceStyle() 167 ta.getColor(R.styleable.TextAppearance_textColor, defValue)); in verifyIdenticalTextAppearanceStyle() 169 ta.getColor(R.styleable.TextAppearance_textColorHint, defValue)); in verifyIdenticalTextAppearanceStyle() 171 ta.getColor(R.styleable.TextAppearance_textColorLink, defValue)); in verifyIdenticalTextAppearanceStyle() 173 ta.getColor(R.styleable.TextAppearance_textColorHighlight, defValue)); in verifyIdenticalTextAppearanceStyle() [all …]
|
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
D | RSYuvTest.java | 98 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/ |
D | CustomDrawableTest.java | 65 final TypedArray ta; in inflate() local 67 ta = theme.obtainStyledAttributes(attrs, ATTRS, 0, 0); in inflate() 69 ta = r.obtainAttributes(attrs, ATTRS); in inflate() 72 mColor = ta.getColor(0, Color.BLACK); in inflate()
|
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/ |
D | FontScaleActivity.java | 52 TypedArray ta = getTheme().obtainStyledAttributes(attrs, in dumpFontSize() local 55 final int fontPixelSize = ta.getDimensionPixelSize(0, -1); in dumpFontSize() 64 ta.recycle(); in dumpFontSize()
|
/cts/tests/tests/content/src/android/content/res/cts/ |
D | Resources_ThemeTest.java | 88 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()
|
D | TypedArrayTest.java | 278 final TypedArray ta = getContext().getResources().obtainAttributes(set, in testNonResourceString() local 280 assertEquals(1, ta.getIndexCount()); in testNonResourceString() 281 assertEquals(EXPECTED_NON_RESOURCE_STRING, ta.getNonResourceString( in testNonResourceString() 283 ta.recycle(); in testNonResourceString() 296 final TypedArray ta = theme.obtainStyledAttributes(parser, R.styleable.style1, 0, 0); in testEmptyXmlAttributeDoesNotFallbackToTheme() local 298 assertTrue(ta.hasValueOrEmpty(R.styleable.style1_type1)); in testEmptyXmlAttributeDoesNotFallbackToTheme() 299 assertEquals(TypedValue.TYPE_NULL, ta.getType(R.styleable.style1_type1)); in testEmptyXmlAttributeDoesNotFallbackToTheme() 301 ta.recycle(); in testEmptyXmlAttributeDoesNotFallbackToTheme()
|
D | ResourcesTest.java | 123 final TypedArray ta = mResources.obtainTypedArray(R.array.string); in testObtainTypedArray() local 124 assertEquals(3, ta.length()); in testObtainTypedArray() 125 assertEquals("Test String 1", ta.getString(0)); in testObtainTypedArray() 126 assertEquals("Test String 2", ta.getString(1)); in testObtainTypedArray() 127 assertEquals("Test String 3", ta.getString(2)); in testObtainTypedArray() 128 assertEquals(mResources, ta.getResources()); in testObtainTypedArray()
|
/cts/tests/app/src/android/app/cts/ |
D | DialogTest.java | 123 TypedArray ta = in testConstructor() local 125 assertTextAppearanceStyle(ta); in testConstructor() 128 ta = w.getContext().getTheme().obtainStyledAttributes(R.styleable.TextAppearance); in testConstructor() 129 assertTextAppearanceStyle(ta); in testConstructor() 166 private void assertTextAppearanceStyle(TypedArray ta) { in assertTextAppearanceStyle() argument 173 assertEquals(expectedTa.getIndexCount(), ta.getIndexCount()); in assertTextAppearanceStyle() 175 ta.getColor(R.styleable.TextAppearance_textColor, defValue)); in assertTextAppearanceStyle() 177 ta.getColor(R.styleable.TextAppearance_textColorHint, defValue)); in assertTextAppearanceStyle() 179 ta.getColor(R.styleable.TextAppearance_textColorLink, defValue)); in assertTextAppearanceStyle() 181 ta.getColor(R.styleable.TextAppearance_textColorHighlight, defValue)); in assertTextAppearanceStyle() [all …]
|
D | AlertDialog_BuilderTest.java | 122 TypedArray ta = themedContext.obtainStyledAttributes(attrs); in testConstructorWithThemeId() local 123 assertEquals(20, ta.getInt(0, 0)); in testConstructorWithThemeId()
|
/cts/hostsidetests/incident/src/com/android/server/cts/ |
D | AlarmManagerIncidentTest.java | 146 for (AlarmManagerServiceDumpProto.TopAlarm ta : dump.getTopAlarmsList()) { in verifyAlarmManagerServiceDumpProto() 147 assertTrue(0 <= ta.getUid()); in verifyAlarmManagerServiceDumpProto() 148 testFilterStatsProto(ta.getFilter(), filterLevel); in verifyAlarmManagerServiceDumpProto()
|
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | CellInfoTest.java | 728 int ta = cellSignalStrengthLte.getTimingAdvance(); in verifyCellSignalStrengthLte() local 729 assertTrue("getTimingAdvance() invalid [0-1282] | CellInfo.UNAVAILABLE, ta=" + ta, in verifyCellSignalStrengthLte() 730 ta == CellInfo.UNAVAILABLE || (ta >= 0 && ta <= 1282)); in verifyCellSignalStrengthLte() 951 int ta = gsm.getTimingAdvance(); in verifyCellSignalStrengthGsm() local 952 assertTrue("getTimingAdvance() out of range [0,219] | CellInfo.UNAVAILABLE, ta=" + ta, in verifyCellSignalStrengthGsm() 953 ta == CellInfo.UNAVAILABLE || (ta >= 0 && ta <= 219)); in verifyCellSignalStrengthGsm()
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | MagnifierTest.java | 240 final TypedArray ta = deviceDefaultContext.obtainStyledAttributes( in testMagnifierDefaultParameters_withDeprecatedConstructor() local 242 final float dialogCornerRadius = ta.getDimension(0, 0); in testMagnifierDefaultParameters_withDeprecatedConstructor() 243 ta.recycle(); in testMagnifierDefaultParameters_withDeprecatedConstructor()
|
/cts/tests/tests/media/assets/hls_variant/344388/ |
D | 16.ts | 577 …�20y��ALf����:#[Y�*��M�F���hU`j"�kS�<u�l�t��g�t~W�-oȽcKB=�1�%1z�ta����$��;�~�Wӻ�Rͅa��… 579 …�:��*���PBC� ����P�yx��Qm��-S�E�K�D,��%R�1$z��ԓ��x�kÅ�ٙ��>����?�A�ta�`'g3?�����=�G��V…
|
D | 15.ts | 264 …5��TvL2�h���!:�Ұ&'+�}��۳���E-j�,wʪ��j�/�ö {(�a���<܊���1����u�z�ta��c�ا���.D�G;PO1… 705 �č���j�d~�'��H���I,?��W�:��˄�/��TbW��jQ�Jew�zyaΕ����� �����ّbW�^>�ta�P-���¹�M@���s�Y…
|
D | 01.ts | 232 )�N�+��.fta�*=�2�m'�0���l�w����%9?n'!L�����o����?����_��#�e�`y�2B�������9���f����"…
|
D | 19.ts | 49 Vh���I����5�B�2���4-�rnZ5�{r�4K�`�FGx�������_�siӋ�p7�t�������]��y���;�C"ta�C�p�n�`dT��…
|
/cts/tests/tests/media/assets/hls_variant/165340/ |
D | 21.ts | 559 …���L���}�nM,�3&0�q�!Ts��K�+���ߡ�, ��p\�U,Z>�'FWc��|�چ���!�5����4O:�ta�*�X�t����J�Az
|
D | 00.ts | 512 Z���Z Ȋ�V�q�o3��l���C�/6&s�]�8|~��e���N�m�>�n�ta�uȳ��
|
D | 04.ts | 217 ��^Q瑢Q}�S}��W�{�=�Q��m�����S�0��Ρ�O��}�ta���^�m��R��!Q��{�����aG/N
|
/cts/tests/tests/media/assets/hls_variant/387360/ |
D | 12.ts | 106 -�r�桏��i�Z?��ta����2~j��y.N��F<�j)
|
D | 17.ts | 809 =��Η�&���5 f�#�PVYˇ�l�@FЮ���-<���Q��f��'�M�(ta��q�^�����P����Z@��gKE�9�;�j|��q ��g"�U�…
|
/cts/tests/tests/graphics/res/raw/ |
D | sample_raf.raf | 2210 …>j���<T��v3��?Z����ri%�G'ӌןWcX�G���K�)� ! �7��'��^_��>���y8M�q�ta��==�d���q���DŽ�rH=��… 2741 … �p�i� �q�m�1lQnA#�|1n� Arqq�'�gw 1t���(1xAsA!�tauA&�xr�$�o1x… 2771 …!an�ra Qpap�"�wQq�*qpt� ]qv�1q�{�"�eArA%�w�|q"ta��&�y�v1u�]�… 2832 …ENA+�G�Fq*<1@�(�S1f1:�sAjAL�sAqAG�x�vaN!ln�Jo�taHAnoAMq{Ql�B1… 2884 …'�>�p�J�s�u�Jw1t�AQj�qQ?�}Ql�@aq�p1B�wqr�M�qQw�A�taiF!n_�=�r1o�… 2926 …X�pQ2�]�fA<�O�X16f�Z�3Af�m/�h�a.dQn�5�ra\�,e�ta21k�\A(!d�b�2Q… 2950 …kqv�%�u�e$ar�j�"�yAx"!hq�q&!n�fA$�i�t�#az1z1Ao�ta.�l�~AoA��%�… 2961 …$M*K2$�#G�+M�"�"#Jr+Q2#��"`�*Kr$��"d�+I"$�"">�)>�!�#<�(b!t"�1#͑���!tasR�F�E�'�%a?1… 2979 …�*7�*�B%��+S�)�B%�B+>B*��#��*2r,�$�B*:�*��$��* +�%�r)b'Y"!1�!�����tacqWA,�PqD�aKq… 3188 …b�Ya6�bN�:f�oQ:�m�[�2!f1`19A`����,}S(�J��>e�JQ�taCqz1u1;��1����… [all …]
|
/cts/tests/tests/media/assets/unmuxed_1500k/ |
D | 02.ts | 277 A��%A�WzXG�^L���O�M��ta\��S:�^��Bv"��lt���K�W� ;+���� J�վL 1814 …a�Y_>l�^�w��.�Ó�c��3�`�%�� ���I�t��_�e\�ꬫ�+ײ���7d���팟z`��8��FOO/�ta��Gt��x��*�9��@2… 3197 �.�f����f�L[�)��F��V�������SA`sI��������yM�g��!?#��,ta���f��d��UG+A��N��m�l�Y���X�<*R… 5687 …��YJ�9�g����zu�[� Y�{�+��_�A��G�_A��(8oL�$M����!b��/1D�w�����jED�ta��c���ٝwC�d^^���X�…
|
/cts/tests/tests/media/assets/hls_variant/1676816/ |
D | 16.ts | 110 f���5s5qt�ta���TA:��h��R�<D�B«�6�7�-(����d��ށ 1816 4��n���T�1,�\ɕV{U6W�N��c�z�4�#e�ݓ����"ta]|�\,�.�(V�����4P�s�����sَ1(#����z��GZV4�N�f… 1877 …F+텠�O���U��)E���*�ϸ��W���9�\»��rݽ ���~1�XBh���OΊ�x�������4��k�ta`�V����U��G{k�… 4585 [vM�k�x��ta�=5ݑ�d��G�.��x7fZ*���˿\vo���N�"�L7�����!�)5H Ge܇����`m���4����Lb�tƺ��'��s-… 6088 …�!q�SD�����6Y�!�Z����Nw3-E��84��f��GO��@Q��IDT��ŋ�"�Z4?w �}��ʍY�|�ta�r[z˦��'�_囷cn*������…
|