Searched refs:ba (Results 1 - 7 of 7) sorted by relevance

/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_array_init.java77 boolean[] ba = s.get_ba();
78 _RS_ASSERT("ba[0] == true", ba[0] == true);
79 _RS_ASSERT("ba[1] == false", ba[1] == false);
80 _RS_ASSERT("ba[2] == false", ba[2] == false);
81 _RS_ASSERT("ba.length == 3", ba.length == 3);
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_array_init.java77 boolean[] ba = s.get_ba();
78 _RS_ASSERT("ba[0] == true", ba[0] == true);
79 _RS_ASSERT("ba[1] == false", ba[1] == false);
80 _RS_ASSERT("ba[2] == false", ba[2] == false);
81 _RS_ASSERT("ba.length == 3", ba.length == 3);
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_array_init.java77 boolean[] ba = s.get_ba();
78 _RS_ASSERT("ba[0] == true", ba[0] == true);
79 _RS_ASSERT("ba[1] == false", ba[1] == false);
80 _RS_ASSERT("ba[2] == false", ba[2] == false);
81 _RS_ASSERT("ba.length == 3", ba.length == 3);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSIMRecords.java1342 private void handleSms(byte[] ba) { argument
1343 if (ba[0] != 0)
1344 Rlog.d("ENF", "status : " + ba[0]);
1348 if (ba[0] == 3) {
1349 int n = ba.length;
1354 System.arraycopy(ba, 1, pdu, 0, n - 1);
1366 byte[] ba = messages.get(i);
1368 if (ba[0] != 0)
1369 Rlog.i("ENF", "status " + i + ": " + ba[0]);
1374 if (ba[
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java156 byte[] ba = messages.get(i);
157 if (ba[0] == STATUS_ON_ICC_UNREAD) {
158 int n = ba.length;
160 System.arraycopy(ba, 1, nba, 0, n - 1);
587 byte[] ba = messages.get(i);
588 if (ba[0] == STATUS_ON_ICC_FREE) {
/frameworks/base/core/java/android/os/
H A DParcel.java1845 byte[] ba = createByteArray();
1846 if (ba.length == val.length) {
1847 System.arraycopy(ba, 0, val, 0, ba.length);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java5730 SparseArray<Long> ba = pmap.valueAt(ip);
5731 for (i = ba.size() - 1; i >= 0; i--) {
5733 final int entUid = ba.keyAt(i);
5748 ba.removeAt(i);
5751 if (ba.size() == 0) {

Completed in 305 milliseconds