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

1 2 3

  /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);
  /external/chromium/third_party/icu/source/test/intltest/
winutil.h 36 static void freeLocales(LCIDRecord *records);
winutil.cpp 74 void Win32Utilities::freeLocales(LCIDRecord *records)
76 delete[] records;
  /external/icu4c/test/intltest/
winutil.h 36 static void freeLocales(LCIDRecord *records);
winutil.cpp 81 void Win32Utilities::freeLocales(LCIDRecord *records)
86 delete[] records;
  /cts/tests/tests/ndef/src/android/ndef/cts/
BasicNdefTest.java 38 NdefRecord[] records = msg.getRecords(); local
40 assertEquals(1, records.length);
42 assertEquals(0, records[0].getId().length);
44 assertEquals(NdefRecord.TNF_WELL_KNOWN, records[0].getTnf());
46 assertByteArrayEquals(NdefRecord.RTD_SMART_POSTER, records[0].getType());
52 records[0].getPayload());
  /frameworks/base/core/java/android/nfc/
NdefMessage.java 25 * <p>An NDEF message includes "records" that can contain different sets of data, such as
27 * message always contains zero or more NDEF records.</p>
51 * Create an NDEF message from NDEF records.
53 public NdefMessage(NdefRecord[] records) {
54 mRecords = new NdefRecord[records.length];
55 System.arraycopy(records, 0, mRecords, 0, records.length);
59 * Get the NDEF records inside this NDEF message.
61 * @return array of zero or more NDEF records.
121 NdefRecord[] records = new NdefRecord[recordsLength]
    [all...]
  /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,
PairPositioningSubtables.cpp 127 const PairValueRecord *PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize) const
133 const PairValueRecord *record = records;
147 const PairValueRecord *record = records;
  /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/base/core/jni/
android_nfc_NdefMessage.cpp 34 uint8_t **records = NULL; local
51 /* Get the number of records in the message so we can allocate buffers */
61 TRACE("phFriNfc_NdefRecord_GetRecords(NULL) returned 0x%04x, with %d records", status, num_of_records);
66 records = (uint8_t**)malloc(num_of_records * sizeof(uint8_t *));
67 if (records == NULL)
70 /* Now, actually retrieve records position in message */
74 (uint32_t)raw_msg_size, records, is_chunked, &num_of_records);
80 TRACE("phFriNfc_NdefRecord_GetRecords() returned 0x%04x, with %d records", status, num_of_records);
82 /* Build NDEF records array */
97 status = phFriNfc_NdefRecord_Parse(&record, records[i])
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 62 * records are just metadata about this record. There MUST be one URI
71 * or many MIME-typed image records within the Smart Poster. If the
137 Iterable<ParsedNdefRecord> records = NdefMessageParser.getRecords(recordsRaw); local
138 UriRecord uri = Iterables.getOnlyElement(Iterables.filter(records, UriRecord.class));
139 TextRecord title = getFirstIfExists(records, TextRecord.class);
140 ImageRecord image = getFirstIfExists(records, ImageRecord.class);
224 private static NdefRecord getByType(byte[] type, NdefRecord[] records) {
225 for (NdefRecord record : records) {
235 private static RecommendedAction parseRecommendedAction(NdefRecord[] records) {
236 NdefRecord record = getByType(ACTION_RECORD_TYPE, records);
    [all...]
  /development/samples/NFCDemo/src/com/example/android/nfc/record/
SmartPoster.java 57 * records are just metadata about this record. There MUST be one URI record
116 Iterable<ParsedNdefRecord> records = NdefMessageParser.getRecords(recordsRaw); local
117 UriRecord uri = Iterables.getOnlyElement(Iterables.filter(records, UriRecord.class));
118 TextRecord title = getFirstIfExists(records, TextRecord.class);
190 private static NdefRecord getByType(byte[] type, NdefRecord[] records) {
191 for (NdefRecord record : records) {
201 private static RecommendedAction parseRecommendedAction(NdefRecord[] records) {
202 NdefRecord record = getByType(ACTION_RECORD_TYPE, records);
215 private static String parseType(NdefRecord[] records) {
216 NdefRecord type = getByType(TYPE_TYPE, records);
    [all...]
  /development/samples/NFCDemo/src/com/example/android/nfc/
NdefMessageParser.java 44 public static List<ParsedNdefRecord> getRecords(NdefRecord[] records) {
46 for (NdefRecord record : records) {
TagViewer.java 104 // Build views for all of the sub records
105 List<ParsedNdefRecord> records = NdefMessageParser.parse(msgs[0]); local
106 final int size = records.size();
108 ParsedNdefRecord record = records.get(i);
  /external/netcat/data/
dns-any.d 23 0 # addl records: 0
  /packages/apps/Tag/src/com/android/apps/tag/message/
ParsedNdefMessage.java 37 public ParsedNdefMessage(List<ParsedNdefRecord> records) {
38 mRecords = ImmutableList.copyOf(records);
42 * Returns the list of parsed records on this message.
NdefMessageParser.java 51 public static List<ParsedNdefRecord> getRecords(NdefRecord[] records) {
53 for (NdefRecord record : records) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccPhoneBookInterfaceManager.java 30 * access ADN-like SIM records.
40 protected List<AdnRecord> records; field in class:IccPhoneBookInterfaceManager
61 // recordSize[2] is the number of records in the EF file
80 records = (List<AdnRecord>) ar.result;
82 if(DBG) logd("Cannot load ADN records");
83 if (records != null) {
84 records.clear();
210 * Get the capacity of records in efid
216 * recordSizes[2] is the number of records in the EF file
251 return records;
    [all...]
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 331 List<SmsRawData> records = null; local
336 records = iccISms.getAllMessagesFromIccEf();
342 return createMessageListFromRawRecords(records);
469 * records returned by <code>getAllMessagesFromIcc()</code>
471 * @param records SMS EF records, returned by
475 private ArrayList<SmsMessage> createMessageListFromRawRecords(List<SmsRawData> records) {
477 if (records != null) {
478 int count = records.size();
480 SmsRawData data = records.get(i)
    [all...]
  /cts/tools/host/src/com/android/cts/
Selector.java 67 public Selector(String type, List<String> records) {
68 mRecords = records;
188 public PlanBuilder(List<String> records) {
189 super(PACKAGE_SELECTOR, records);
338 public TestSelector(List<String> records) {
339 super(TEST_SELECTOR, records);
348 ArrayList<String> records = new ArrayList<String>(); local
352 records.add(test);
356 return records;
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 20 # records from a remote dynamic dns client.
28 # update the records here. tested and confirmed to work with ddnsu
194 my @records;
202 push @records, "$$hashref{'myip'}\t$$hashref{'hostname'}\n";
206 push @records, $_;
210 push @records, "$$hashref{'myip'}\t$$hashref{'hostname'}\n";
214 syswrite(FILE, join("", @records));

Completed in 3145 milliseconds

1 2 3