Searched defs:parse (Results 1 - 25 of 49) sorted by last modified time

12

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLookupKey.java109 public ArrayList<LookupKeySegment> parse(String lookupKey) { method in class:ContactLookupKey
/packages/apps/Tag/src/com/android/apps/tag/message/
H A DNdefMessageParser.java43 public static ParsedNdefMessage parse(NdefMessage message) { method in class:NdefMessageParser
55 elements.add(SmartPoster.parse(record));
57 elements.add(UriRecord.parse(record));
59 elements.add(TextRecord.parse(record));
61 elements.add(ImageRecord.parse(record));
63 elements.add(VCardRecord.parse(record));
65 elements.add(MimeRecord.parse(record));
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DImageRecord.java53 public static ImageRecord parse(NdefRecord record) { method in class:ImageRecord
71 parse(record);
H A DMimeRecord.java70 public static MimeRecord parse(NdefRecord record) { method in class:MimeRecord
H A DSmartPoster.java124 public static SmartPoster parse(NdefRecord record) { method in class:SmartPoster
129 return parse(subRecords.getRecords());
135 public static SmartPoster parse(NdefRecord[] recordsRaw) { method in class:SmartPoster
152 parse(record);
H A DTextRecord.java80 public static TextRecord parse(NdefRecord record) { method in class:TextRecord
121 parse(record);
H A DUriRecord.java131 public static UriRecord parse(NdefRecord record) { method in class:UriRecord
H A DVCardRecord.java90 // TODO: parse content and display something nicer.
134 parser.parse(new ByteArrayInputStream(mVCard), constructor);
138 parser.parse(new ByteArrayInputStream(mVCard), constructor);
152 public static VCardRecord parse(NdefRecord record) { method in class:VCardRecord
153 MimeRecord underlyingRecord = MimeRecord.parse(record);
178 parse(record);
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DHandoverManager.java535 Uri.parse(ContentResolver.SCHEME_FILE + "://" + filePath);
783 BluetoothHandoverData handover = parse(m);
807 BluetoothHandoverData data = parse(m);
851 // TODO we could parse this a lot more strictly; right now
868 BluetoothHandoverData parse(NdefMessage m) { method in class:HandoverManager
969 // need to parse as int because parseByte() expects a signed byte
1034 Uri uri = Uri.parse(uriString);
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasOutboxService.java210 public boolean parse() throws IOException { method in class:EasOutboxService.SendMailParser
410 // HTTP OK before EAS 14 is a thumbs up; in EAS 14, we've got to parse
414 // Try to parse the result
418 p.parse();
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DAbstractSyncAdapter.java68 public abstract boolean parse(InputStream is) throws IOException, CommandStatusException; method in class:AbstractSyncAdapter
H A DAbstractSyncParser.java72 * Read, parse, and act on incoming commands from the Exchange server
79 * Read, parse, and act on server responses
112 public boolean parse() throws IOException, CommandStatusException { method in class:AbstractSyncParser
H A DAccountSyncAdapter.java28 public boolean parse(InputStream is) throws IOException { method in class:AccountSyncAdapter
H A DCalendarSyncAdapter.java240 public boolean parse(InputStream is) throws IOException, CommandStatusException { method in class:CalendarSyncAdapter
242 return p.parse();
1020 * For now, we ignore (but still have to parse) event attachments; these are new in EAS 14
1044 // We still need to parse them all, however
1573 duration.parse(entityValues.getAsString(Events.DURATION));
H A DContactsSyncAdapter.java227 public boolean parse(InputStream is) throws IOException, CommandStatusException { method in class:ContactsSyncAdapter
229 return p.parse();
H A DEmailSyncAdapter.java276 public boolean parse(InputStream is) throws IOException, CommandStatusException { method in class:EmailSyncAdapter
279 boolean res = p.parse();
368 public boolean parse() throws IOException { method in class:EmailSyncAdapter.GetItemEstimateParser
464 gieParser.parse();
522 msg.mTo = Address.pack(Address.parse(getValue()));
525 Address[] froms = Address.parse(getValue());
532 msg.mCc = Address.pack(Address.parse(getValue()));
535 msg.mReplyTo = Address.pack(Address.parse(getValue()));
556 // We get MIME data for EAS 2.5. First we parse it, then we take the
H A DFolderSyncParser.java136 public boolean parse() throws IOException, CommandStatusException { method in class:FolderSyncParser
H A DGalParser.java42 public boolean parse() throws IOException { method in class:GalParser
H A DItemOperationsParser.java77 public boolean parse() throws IOException { method in class:ItemOperationsParser
H A DMeetingResponseParser.java50 public boolean parse() throws IOException { method in class:MeetingResponseParser
H A DMoveItemsParser.java98 public boolean parse() throws IOException { method in class:MoveItemsParser
H A DParser.java145 public boolean parse() throws IOException, EasException { method in class:Parser
H A DPingParser.java66 public boolean parse() throws IOException, StaleFolderListException, IllegalHeartbeatException { method in class:PingParser
H A DProvisionParser.java588 public boolean parse() throws IOException { method in class:ProvisionParser
H A DSearch.java119 sp.parse();
167 public boolean parse() throws IOException { method in class:Search.SearchParser

Completed in 325 milliseconds

12