HomeSort by relevance Sort by last modified time
    Searched refs:records (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimSmsTest.java 36 List<SmsRawData> records = sms.getAllMessagesFromIccEf(); local
37 assertNotNull(records);
38 assertTrue(records.size() >= 0);
43 for (int i = 0; i < records.size(); i++) {
44 SmsRawData data = records.get(i);
  /frameworks/base/core/java/android/nfc/
NdefMessage.java 33 * NDEF defines messages and records. An NDEF Record contains
36 * one or more NDEF Records.
70 * This parser can handle chunked records, and converts them
73 * records, basic validation of the tnf, type, id, and payload fields
106 * Construct an NDEF Message from one or more NDEF Records.
109 * @param records additional records (optional)
111 public NdefMessage(NdefRecord record, NdefRecord ... records) {
115 for (NdefRecord r : records) {
121 mRecords = new NdefRecord[1 + records.length]
    [all...]
  /external/icu4c/test/intltest/
winutil.h 36 static void freeLocales(LCIDRecord *records);
winutil.cpp 81 void Win32Utilities::freeLocales(LCIDRecord *records)
86 delete[] records;
  /external/icu4c/layout/
OpenTypeUtilities.h 23 static Offset getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount);
24 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount);
OpenTypeUtilities.cpp 54 Offset OpenTypeUtilities::getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount)
62 if (SWAPT(records[extra].tag) <= tag) {
69 if (SWAPT(records[index + probe].tag) <= tag) {
74 if (SWAPT(records[index].tag) == tag) {
75 return SWAPW(records[index].offset);
81 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount)
93 if (SWAPW(records[extra].firstGlyph) <= glyphID) {
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) {
105 if (SWAPW(records[range].firstGlyph) <= glyphID && SWAPW(records[range].lastGlyph) >= glyphID)
    [all...]
PairPositioningSubtables.h 54 const PairValueRecord *findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NfcUtils.java 32 private static boolean areRecordArraysEqual(NdefRecord[] records, NdefRecord[] otherRecords) {
33 if (records.length == otherRecords.length) {
34 for (int i = 0; i < records.length; i++) {
35 if (!areRecordsEqual(records[i], otherRecords[i])) {
  /frameworks/base/tools/preload/
Compile.java 41 List<Record> records = new ArrayList<Record>(); local
53 records.add(new Record(clipped, lineNumber));
61 for (Record record : records) {
65 for (Record record : records) {
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 74 dataRecord *records; variable
162 records = (dataRecord *) malloc(sizeof(dataRecord) * numRecords);
211 records[nextRecord].time = time;
212 records[nextRecord].threadId = threadId;
224 records[nextRecord].fullName = strndup(save_cp, len);
227 records[nextRecord].className = NULL;
228 records[nextRecord].methodName = NULL;
229 records[nextRecord].signature = NULL;
234 records[nextRecord].className = strndup(save_cp, len);
241 records[nextRecord].methodName = strndup(save_cp, len)
    [all...]
  /frameworks/av/include/common_time/
local_clock.h 38 int32_t getDebugLog(struct local_time_debug_event* records,