Home
last modified time | relevance | path

Searched refs:bd (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DLocalImageResolverTest.java99 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeBitmapIcon_defaultSize_resizeToDefaultSize() local
130 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeResourceIcon_defaultSize_resizeToDefaultSize() local
144 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeResourceIcon_passedSize_resizeToDefinedSize() local
156 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeResourceIcon_negativeWidth_dontResize() local
168 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeResourceIcon_negativeHeight_dontResize() local
181 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeBitmapIcon_passedNegativeWidth_dontResize() local
194 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeBitmapIcon_passedNegativeHeight_dontResize() local
205 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_smallBitmapIcon_passedSmallerSize_dontResize() local
217 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_largeBitmapIcon_passedSize_resizeToDefinedSize() local
241 BitmapDrawable bd = (BitmapDrawable) d; in resolveImage_smallResourceIcon_defaultSize_untouched() local
[all …]
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/
H A DBidiPerfTest.java54 Bidi bd = in time_createBidiFromCharArray() local
86 Bidi bd = in time_hebrewBidi() local
94 bd = in time_hebrewBidi()
109 Bidi bd = in time_complicatedOverrideBidi() local
/aosp14/frameworks/base/core/tests/coretests/src/android/text/format/
H A DFormatterTest.java240 final BigDecimal bd = new BigDecimal((long) 1000, mc); in assertFormatFileSize_englishOutput() local
253 assertEquals("1.00 kB", Formatter.formatFileSize(mContext, bd.pow(1).longValue())); in assertFormatFileSize_englishOutput()
254 assertEquals("1.50 kB", Formatter.formatFileSize(mContext, bd.pow(1).longValue() * 3 / 2)); in assertFormatFileSize_englishOutput()
256 bd.pow(1).longValue() * 25 / 2)); in assertFormatFileSize_englishOutput()
258 assertEquals("1.00 MB", Formatter.formatFileSize(mContext, bd.pow(2).longValue())); in assertFormatFileSize_englishOutput()
260 assertEquals("1.00 GB", Formatter.formatFileSize(mContext, bd.pow(3).longValue())); in assertFormatFileSize_englishOutput()
262 assertEquals("1.00 TB", Formatter.formatFileSize(mContext, bd.pow(4).longValue())); in assertFormatFileSize_englishOutput()
264 assertEquals("1.00 PB", Formatter.formatFileSize(mContext, bd.pow(5).longValue())); in assertFormatFileSize_englishOutput()
266 assertEquals("1000 PB", Formatter.formatFileSize(mContext, bd.pow(6).longValue())); in assertFormatFileSize_englishOutput()
/aosp14/frameworks/base/services/tests/servicestests/assets/KeyStoreRecoveryControllerTest/pem/
H A Dvalid-cert.pem75 17:58:bd:76:7f:8d:e4:78:c4:2a:69:09:3b:7a:57:
103 0e:cb:a4:41:b6:ca:bd:32:a0:de:0c:4f:54:d3:7f:
108 71:84:80:87:99:9c:6b:22:32:22:bd:0a:4e:e5:e4:
159 eb:3b:71:2d:5c:38:62:f5:ef:90:4d:f7:27:bd:1b:20:97:f1:
163 de:67:fd:13:4d:07:bd:90:46:bc:42:e4:73:b9:12:24:2b:95:
172 4a:65:0e:f0:2f:b4:7a:8c:aa:e3:fc:6b:42:0d:ec:b5:5a:bd:
174 69:18:46:90:bd:82:5c:68:ec:64:d8:3f:96:6a:9e:5a:c7:c9:
190 db:3f:cd:05:90:16:bf:e8:9c:46:82:38:ec:8b:00:e6:86:bd:
193 3b:7b:a7:77:17:76:bd:d1:45:18:90:12:20:8d:ef:73:bb:44:
/aosp14/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsHistory.java1278 BitDescription bd = descriptions[i]; in recordTraceCounters() local
1279 if ((diff & bd.mask) == 0) continue; in recordTraceCounters()
1282 if (bd.shift < 0) { in recordTraceCounters()
1283 value = (newval & bd.mask) != 0 ? 1 : 0; in recordTraceCounters()
1285 value = (newval & bd.mask) >> bd.shift; in recordTraceCounters()
1288 mTracer.traceCounter("battery_stats." + bd.name, value); in recordTraceCounters()
/aosp14/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java491 final BitmapDrawable bd = (BitmapDrawable)getResources().getDrawable(id); in loadBitmap() local
492 return Bitmap.createBitmap(bd.getBitmap()); in loadBitmap()
H A DNotificationTestList.java1210 BitmapDrawable bd = (BitmapDrawable)getResources().getDrawable(resId); in loadBitmap() local
1211 return Bitmap.createBitmap(bd.getBitmap()); in loadBitmap()
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DContrastColorUtil.java130 BitmapDrawable bd = (BitmapDrawable) d; in isGrayscaleIcon() local
131 return bd.getBitmap() != null && isGrayscaleIcon(bd.getBitmap()); in isGrayscaleIcon()
/aosp14/frameworks/base/core/java/android/os/
H A DBatteryStats.java6782 BitDescription bd = descriptions[i]; in printBitDescriptions() local
6783 if ((diff&bd.mask) != 0) { in printBitDescriptions()
6785 if (bd.shift < 0) { in printBitDescriptions()
6786 sb.append((newval & bd.mask) != 0 ? "+" : "-"); in printBitDescriptions()
6787 sb.append(longNames ? bd.name : bd.shortName); in printBitDescriptions()
6788 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) { in printBitDescriptions()
6802 sb.append(longNames ? bd.name : bd.shortName); in printBitDescriptions()
6804 int val = (newval&bd.mask)>>bd.shift; in printBitDescriptions()
6805 if (bd.values != null && val >= 0 && val < bd.values.length) { in printBitDescriptions()
6806 sb.append(longNames ? bd.values[val] : bd.shortValues[val]); in printBitDescriptions()
/aosp14/frameworks/base/apct-tests/perftests/rubidium/assets/
H A Drubidium_bidding_logic_compiled.js60 …nue}else if(!ka.get(pa)){Ya&&Te(Ya,z,6,1);continue}var bd=void 0,cd=void 0;z.v=null!=(cd=null==(bd variable
61 void 0:J(bd,rc,4))?cd:void 0}var dd=void 0,ed=void 0;z.F=null!=(ed=null==(dd=ka.get(pa))?void 0:J(d…
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/aosp14/frameworks/base/native/graphics/jni/fuzz/corpus/
H A Dsample_raf.raf1379 ��k�g!�ҽ�PzTm_�R?�ȲA<�iFrrz��bd���$�jr9���|L@~���t���HHn�+�g҈��V�I�9�+����������"�#���B�…
1778 ��43���D��wd�Z�>I9��'���2��M<6G_sA"����ezs�҂,���Rq��i�٭ϔbd��+��i���2x�i���@�A;�Od�s�h��…
1910 ��?���W<=�C⯉�6��-bd��#��?�X5�?�b�:̈�������yw2����g^ݜ�9l���_�a�|4����-���O�^�8�R �y<��_(b…
2158 ��O�R�Ed�����Tc=�ׇ�?�v�:������ ��7��\�W��7����Z��0|E��b]�bd��5����Bq�P�_7\�#g��y�i��298,O�3…
22779 …*΂Cɢ+P�'��Cݒ(U�)�"F��)?$+��D��(y$'��D�(<�'��B�"*0D(��C��*OT)��E��'V$(��E�)bd'٢A��)&D'{�=o�!3�7…
23922 �g1�;j�f�g�:|�e$e$v9V6e'df`�8P�d�fK6<p�e te�&:/�g�h�6;5�f�bd�9(�e��c�8Z�c�Z./k�*{�r�V�(�…
24226 …a�=��^~�_��>�F_[Ca��;�_�C]��;�uaec^�E=%Fba�_"�:��atC_��=&�_R�]ѥ; �bS^�;��bd�_�5;�U_J3^�e=��]_C]
24997 …;a�ao�<v<|�an=�<_]g�<�e<U�_w�=#�;T3aZ3<�<c�^m= �=\#c��<��;\c]L�:�;}bd>f=k�`^�:�e<ls`b�;…
25058 �`^�` v; bz�`v<��`O�^��;��ac�]�;�^W_��;v`d�`��;��_{�^��=��`c�`��<�bd^�5<��_jca�U=V_\�]�<V…
31304 …A%QZ�*�6��P�'��!h�&"B]R0�2�X%9��9K�`T�;�e9|�as>0�;Y�_w�<�<lbd�<��;u�^�C<�<Q�al�<…
[all …]