/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/ |
D | UT_array_init.java | 74 boolean[] ba = s.get_ba(); in checkInit() 75 _RS_ASSERT("ba[0] == true", ba[0] == true); in checkInit() 76 _RS_ASSERT("ba[1] == false", ba[1] == false); in checkInit() 77 _RS_ASSERT("ba[2] == false", ba[2] == false); in checkInit() 78 _RS_ASSERT("ba.length == 3", ba.length == 3); in checkInit()
|
D | array_init.rs | 11 bool ba[3] = {true, false}; 47 _RS_ASSERT(ba[0] == true); 48 _RS_ASSERT(ba[1] == false); 49 _RS_ASSERT(ba[2] == false);
|
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/ |
D | array_init.rs | 11 bool ba[3] = {true, false}; 47 _RS_ASSERT(ba[0] == true); 48 _RS_ASSERT(ba[1] == false); 49 _RS_ASSERT(ba[2] == false);
|
D | UT_array_init.java | 77 boolean[] ba = s.get_ba(); in checkInit() 78 _RS_ASSERT("ba[0] == true", ba[0] == true); in checkInit() 79 _RS_ASSERT("ba[1] == false", ba[1] == false); in checkInit() 80 _RS_ASSERT("ba[2] == false", ba[2] == false); in checkInit() 81 _RS_ASSERT("ba.length == 3", ba.length == 3); in checkInit()
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | array_init.rs | 11 bool ba[3] = {true, false}; 47 _RS_ASSERT(ba[0] == true); 48 _RS_ASSERT(ba[1] == false); 49 _RS_ASSERT(ba[2] == false);
|
D | UT_array_init.java | 77 boolean[] ba = s.get_ba(); in checkInit() 78 _RS_ASSERT("ba[0] == true", ba[0] == true); in checkInit() 79 _RS_ASSERT("ba[1] == false", ba[1] == false); in checkInit() 80 _RS_ASSERT("ba[2] == false", ba[2] == false); in checkInit() 81 _RS_ASSERT("ba.length == 3", ba.length == 3); in checkInit()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | SIMRecords.java | 1480 private void handleSms(byte[] ba) { in handleSms() argument 1481 if (ba[0] != 0) in handleSms() 1482 Rlog.d("ENF", "status : " + ba[0]); in handleSms() 1486 if (ba[0] == 3) { in handleSms() 1487 int n = ba.length; in handleSms() 1492 System.arraycopy(ba, 1, pdu, 0, n - 1); in handleSms() 1504 byte[] ba = messages.get(i); in handleSmses() 1506 if (ba[0] != 0) in handleSmses() 1507 Rlog.i("ENF", "status " + i + ": " + ba[0]); in handleSmses() 1512 if (ba[0] == 3) { in handleSmses() [all …]
|
/frameworks/compile/slang/tests/F_mix_vector/ |
D | mix_vector.rs | 8 f4.xr = f4.ba;
|
/frameworks/compile/slang/tests/F_global_init/ |
D | global_init.rs | 9 bool ba[2] = {false, true};
|
/frameworks/compile/slang/lit-tests/P_array_init/ |
D | array_init.rs | 29 bool ba[3] = {true, false};
|
/frameworks/compile/slang/tests/P_array_init/ |
D | array_init.rs | 15 bool ba[3] = {true, false};
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IccSmsInterfaceManager.java | 157 byte[] ba = messages.get(i); in markMessagesAsRead() 158 if (ba[0] == STATUS_ON_ICC_UNREAD) { in markMessagesAsRead() 159 int n = ba.length; in markMessagesAsRead() 161 System.arraycopy(ba, 1, nba, 0, n - 1); in markMessagesAsRead() 586 byte[] ba = messages.get(i); in buildValidRawData() 587 if (ba[0] == STATUS_ON_ICC_FREE) { in buildValidRawData()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | AppErrors.java | 208 SparseArray<Long> ba = pmap.valueAt(ip); in resetProcessCrashTimeLocked() local 209 for (int i = ba.size() - 1; i >= 0; i--) { in resetProcessCrashTimeLocked() 211 final int entUid = ba.keyAt(i); in resetProcessCrashTimeLocked() 226 ba.removeAt(i); in resetProcessCrashTimeLocked() 229 if (ba.size() == 0) { in resetProcessCrashTimeLocked()
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | jbmr2-encrypted-settings-abcd.ab | 13 …�����H��2��DSW:�e��˄��?��6�ɡ������m�$\<.y������F������0�m�c� o�ba��]�N2q+-*�g��X…
|
/frameworks/base/core/tests/coretests/src/android/graphics/drawable/ |
D | AdaptiveIconDrawableTest.java | 195 int ba = a.getPixel(i, j) & 0xff; in equalBitmaps() local
|
/frameworks/base/core/java/android/os/ |
D | Parcel.java | 2215 byte[] ba = createByteArray(); in readByteArray() 2216 if (ba.length == val.length) { in readByteArray() 2217 System.arraycopy(ba, 0, val, 0, ba.length); in readByteArray()
|