Home
last modified time | relevance | path

Searched refs:ba (Results 1 – 16 of 16) sorted by relevance

/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
DUT_array_init.java74 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()
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/
DUT_array_init.java76 boolean[] ba = s.get_ba(); in checkInit()
77 _RS_ASSERT("ba[0] == true", ba[0] == true); in checkInit()
78 _RS_ASSERT("ba[1] == false", ba[1] == false); in checkInit()
79 _RS_ASSERT("ba[2] == false", ba[2] == false); in checkInit()
80 _RS_ASSERT("ba.length == 3", ba.length == 3); in checkInit()
Darray_init.rs29 bool ba[3] = {true, false};
65 _RS_ASSERT(ba[0] == true);
66 _RS_ASSERT(ba[1] == false);
67 _RS_ASSERT(ba[2] == false);
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Darray_init.rs11 bool ba[3] = {true, false};
47 _RS_ASSERT(ba[0] == true);
48 _RS_ASSERT(ba[1] == false);
49 _RS_ASSERT(ba[2] == false);
DUT_array_init.java77 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/
DSIMRecords.java1439 private void handleSms(byte[] ba) { in handleSms() argument
1440 if (ba[0] != 0) in handleSms()
1441 Rlog.d("ENF", "status : " + ba[0]); in handleSms()
1445 if (ba[0] == 3) { in handleSms()
1446 int n = ba.length; in handleSms()
1451 System.arraycopy(ba, 1, pdu, 0, n - 1); in handleSms()
1463 byte[] ba = messages.get(i); in handleSmses()
1465 if (ba[0] != 0) in handleSmses()
1466 Rlog.i("ENF", "status " + i + ": " + ba[0]); in handleSmses()
1471 if (ba[0] == 3) { in handleSmses()
[all …]
/frameworks/compile/slang/tests/F_mix_vector/
Dmix_vector.rs8 f4.xr = f4.ba;
/frameworks/compile/slang/tests/F_global_init/
Dglobal_init.rs9 bool ba[2] = {false, true};
/frameworks/compile/slang/lit-tests/P_array_init/
Darray_init.rs29 bool ba[3] = {true, false};
/frameworks/compile/slang/tests/P_array_init/
Darray_init.rs15 bool ba[3] = {true, false};
/frameworks/base/services/tests/servicestests/assets/KeyStoreRecoveryControllerTest/pem/
Dvalid-cert.pem84 de:2d:82:7b:f6:fb:c1:98:e2:b4:ba:85:00:8d:6c:
114 69:c7:06:f2:8e:84:6f:d5:fd:7d:ba:93:4c:36:6f:
150 23:8f:8f:a0:ba:02:e5:0d:db:44:73:fa:6f:ce:09:3e:66:40:
152 61:8d:ba:fd:c9:5c:84:1c:ad:5b:1e:1e:d1:49:49:09:ac:1d:
156 5b:61:ad:8d:0f:76:87:64:ba:3a:5f:dc:90:30:57:d3:0a:38:
184 de:aa:de:98:5a:dc:ba:59:c3:62:9f:45:9c:89:1d:f7:bc:61:
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DIccSmsInterfaceManager.java168 byte[] ba = messages.get(i); in markMessagesAsRead()
169 if (ba[0] == STATUS_ON_ICC_UNREAD) { in markMessagesAsRead()
170 int n = ba.length; in markMessagesAsRead()
172 System.arraycopy(ba, 1, nba, 0, n - 1); in markMessagesAsRead()
738 byte[] ba = messages.get(i); in buildValidRawData()
739 if (ba[0] == STATUS_ON_ICC_FREE) { in buildValidRawData()
/frameworks/base/tests/LegacyRestoreTest/
Djbmr2-encrypted-settings-abcd.ab13 …�����H��2��DSW:�e��˄��?��6�ɡ����� �m� $\<.y������F������0�m�c� o�ba��]�N2q+-*�g��X…
/frameworks/base/services/core/java/com/android/server/am/
DAppErrors.java279 SparseArray<Long> ba = pmap.valueAt(ip); in resetProcessCrashTimeLocked() local
280 for (int i = ba.size() - 1; i >= 0; i--) { in resetProcessCrashTimeLocked()
282 final int entUid = ba.keyAt(i); in resetProcessCrashTimeLocked()
297 ba.removeAt(i); in resetProcessCrashTimeLocked()
300 if (ba.size() == 0) { in resetProcessCrashTimeLocked()
/frameworks/base/core/tests/coretests/src/android/graphics/drawable/
DAdaptiveIconDrawableTest.java217 int ba = a.getPixel(i, j) & 0xff; in equalBitmaps() local