Searched refs:ba (Results 1 - 8 of 8) sorted by last modified time

/frameworks/rs/tests/java_api/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/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A DUT_array_init.java74 boolean[] ba = s.get_ba();
75 _RS_ASSERT("ba[0] == true", ba[0] == true);
76 _RS_ASSERT("ba[1] == false", ba[1] == false);
77 _RS_ASSERT("ba[2] == false", ba[2] == false);
78 _RS_ASSERT("ba.length == 3", ba.length == 3);
H A Darray_init.rs27 bool ba[3] = {true, false};
63 _RS_ASSERT(ba[0] == true);
64 _RS_ASSERT(ba[1] == false);
65 _RS_ASSERT(ba[2] == false);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_array_init.java76 boolean[] ba = s.get_ba();
77 _RS_ASSERT("ba[0] == true", ba[0] == true);
78 _RS_ASSERT("ba[1] == false", ba[1] == false);
79 _RS_ASSERT("ba[2] == false", ba[2] == false);
80 _RS_ASSERT("ba.length == 3", ba.length == 3);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java168 byte[] ba = messages.get(i);
169 if (ba[0] == STATUS_ON_ICC_UNREAD) {
170 int n = ba.length;
172 System.arraycopy(ba, 1, nba, 0, n - 1);
738 byte[] ba = messages.get(i);
739 if (ba[0] == STATUS_ON_ICC_FREE) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSIMRecords.java1439 private void handleSms(byte[] ba) { argument
1440 if (ba[0] != 0)
1441 Rlog.d("ENF", "status : " + ba[0]);
1445 if (ba[0] == 3) {
1446 int n = ba.length;
1451 System.arraycopy(ba, 1, pdu, 0, n - 1);
1463 byte[] ba = messages.get(i);
1465 if (ba[0] != 0)
1466 Rlog.i("ENF", "status " + i + ": " + ba[0]);
1471 if (ba[
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DAppErrors.java279 SparseArray<Long> ba = pmap.valueAt(ip);
280 for (int i = ba.size() - 1; i >= 0; i--) {
282 final int entUid = ba.keyAt(i);
297 ba.removeAt(i);
300 if (ba.size() == 0) {
/frameworks/base/core/tests/coretests/src/android/graphics/drawable/
H A DAdaptiveIconDrawableTest.java217 int ba = a.getPixel(i, j) & 0xff;

Completed in 194 milliseconds