Home
last modified time | relevance | path

Searched refs:records (Results 1 – 10 of 10) sorted by relevance

/cts/tests/tests/nfc/src/android/nfc/tech/cts/interactive/
DNfcUtils.java40 private static boolean areRecordArraysEqual(NdefRecord[] records, NdefRecord[] otherRecords) { in areRecordArraysEqual() argument
41 if (records.length == otherRecords.length) { in areRecordArraysEqual()
42 for (int i = 0; i < records.length; i++) { in areRecordArraysEqual()
43 if (!areRecordsEqual(records[i], otherRecords[i])) { in areRecordArraysEqual()
DNdefTagTester.java81 NdefRecord[] records = message.getRecords(); in writeTag() local
83 if (records.length > 0) { in writeTag()
84 NdefRecord record = records[0]; in writeTag()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
DNfcUtils.java32 private static boolean areRecordArraysEqual(NdefRecord[] records, NdefRecord[] otherRecords) { in areRecordArraysEqual() argument
33 if (records.length == otherRecords.length) { in areRecordArraysEqual()
34 for (int i = 0; i < records.length; i++) { in areRecordArraysEqual()
35 if (!areRecordsEqual(records[i], otherRecords[i])) { in areRecordArraysEqual()
DNdefTagTester.java81 NdefRecord[] records = message.getRecords(); in writeTag() local
83 if (records.length > 0) { in writeTag()
84 NdefRecord record = records[0]; in writeTag()
/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/
DContactsContract_DeletedContacts.java67 List<String[]> records = DeletedContactUtil.query(mResolver, projection); in testQuery_returnsProperColumns() local
69 for (String[] record : records) { in testQuery_returnsProperColumns()
120 List<String[]> records = DeletedContactUtil.querySinceTimestamp(mResolver, projection, in testQuerySinceTimestamp() local
122 for (String[] record : records) { in testQuerySinceTimestamp()
DContactsContract_ContactsTest.java148 List<String[]> records = RawContactUtil.queryByContactId(mResolver, ids.mContactId, in testContactDelete_marksRawContactsForDeletion() local
150 for (String[] arr : records) { in testContactDelete_marksRawContactsForDeletion()
235 List<String[]> records = RawContactUtil.queryByContactId(mResolver, ids2.mContactId, in testContactDelete_localContactDeletedImmediatelyWhenAggregatedWithNonLocal() local
237 for (String[] arr : records) { in testContactDelete_localContactDeletedImmediatelyWhenAggregatedWithNonLocal()
/cts/tests/pdf/module/src/android/graphics/pdf/cts/module/
DFormEditRecordTest.java157 FormEditRecord[] records = FormEditRecord.CREATOR.newArray(3); in creator_newArray() local
159 assertEquals(3, records.length); in creator_newArray()
/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/
DIRadioSimImpl.java944 byte status, android.hardware.radio.sim.PhonebookRecordInfo[] records) { in simPhonebookRecordsReceived() argument
950 RadioIndicationType.UNSOLICITED, status, records); in simPhonebookRecordsReceived()
DIRadioVoiceImpl.java932 public void cdmaInfoRec(android.hardware.radio.voice.CdmaInformationRecord[] records) { in cdmaInfoRec() argument
937 mRadioVoiceIndication.cdmaInfoRec(RadioIndicationType.UNSOLICITED, records); in cdmaInfoRec()
/cts/tests/tests/graphics/src/android/graphics/cts/
DImageDecoderTest.java113 ArrayList<Record> records = new ArrayList<>(Arrays.asList(new Record[] { in getRecords() local
126 records.add(new Record(R.raw.heifwriter_input, 1920, 1080, "image/heif", false, false, in getRecords()
130 records.add(new Record(R.raw.avif_yuv_420_8bit, 120, 160, "image/avif", false, false, in getRecords()
133 return records.toArray(new Record[] {}); in getRecords()