Searched defs:records (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Tag/src/com/android/apps/tag/message/
H A DNdefMessageParser.java51 public static List<ParsedNdefRecord> getRecords(NdefRecord[] records) { argument
53 for (NdefRecord record : records) {
H A DParsedNdefMessage.java37 public ParsedNdefMessage(List<ParsedNdefRecord> records) { argument
38 mRecords = ImmutableList.copyOf(records);
42 * Returns the list of parsed records on this message.
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DSmartPoster.java62 * 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);
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) { argument
225 for (NdefRecord record : records) {
235 private static RecommendedAction parseRecommendedAction(NdefRecord[] records) { argument
236 NdefRecord record = getByType(ACTION_RECORD_TYPE, records);
249 parseType(NdefRecord[] records) argument
[all...]

Completed in 201 milliseconds