Home
last modified time | relevance | path

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

/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
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.rs11 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/
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/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.java1480 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/
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/opt/telephony/src/java/com/android/internal/telephony/
DIccSmsInterfaceManager.java157 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/
DAppErrors.java208 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/
Djbmr2-encrypted-settings-abcd.ab13 …�����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/
DAdaptiveIconDrawableTest.java195 int ba = a.getPixel(i, j) & 0xff; in equalBitmaps() local
/frameworks/base/core/java/android/os/
DParcel.java2215 byte[] ba = createByteArray(); in readByteArray()
2216 if (ba.length == val.length) { in readByteArray()
2217 System.arraycopy(ba, 0, val, 0, ba.length); in readByteArray()