Searched refs:email (Results 1 - 5 of 5) sorted by relevance

/frameworks/ex/common/tests/src/com/android/common/
H A DRfc822ValidatorTest.java36 for (String email : validEmails) {
37 assertTrue(email + " should be a valid email address", validator.isValid(email));
44 for (String email : invalidEmails) {
45 assertFalse(email + " should not be a valid email address", validator.isValid(email));
/frameworks/base/core/java/android/net/
H A DMailTo.java73 Uri email = Uri.parse(noScheme);
77 String query = email.getQuery();
94 String address = email.getPath();
108 * several email address that are comma-space delimited.
110 * @return comma delimited email addresses or null
118 * several email address that are comma-space delimited.
120 * @return comma delimited email addresses or null
145 * Retrieve all the parsed email headers from the mailto URL
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java158 // So we read the IAP file and then read the email records.
221 // might be a record with only email
231 // email records, just to be sure.
264 Log.e(LOG_TAG, "Error: Improper ICC card: No email record for ADN, continuing");
273 String email = readEmailRecord(i);
275 if (email == null || email.equals("")) {
284 val.add(email);
298 // The length of the record is X+2 byte, where X bytes is the email address
299 String email
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java133 // TODO(): Read email instead of sending null.
277 // TODO(): Update for email.
415 for (String email: emails) {
416 if (DBG) log("Adding email:" + email);
417 emailString.append(email);
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java249 public AutoFillProfile(int uniqueId, String fullName, String email, argument
255 mEmailAddress = email;

Completed in 251 milliseconds