Lines Matching refs:address

80          * The address of the other party
83 public static final String ADDRESS = "address";
211 * @param address the address of the sender
220 Uri uri, String address, String body, String subject,
222 return addMessageToUri(resolver, uri, address, body, subject,
231 * @param address the address of the sender
241 Uri uri, String address, String body, String subject,
245 values.put(ADDRESS, address);
337 * @param address the address of the sender
345 String address, String body, String subject, Long date,
347 return addMessageToUri(resolver, CONTENT_URI, address, body,
371 * @param address the address of the sender
378 String address, String body, String subject, Long date) {
379 return addMessageToUri(resolver, CONTENT_URI, address, body,
403 * @param address the address of the sender
410 String address, String body, String subject, Long date) {
411 return addMessageToUri(resolver, CONTENT_URI, address, body,
451 * @param address the address of the sender
459 String address, String body, String subject, Long date,
461 return addMessageToUri(resolver, CONTENT_URI, address, body,
785 * The address of the sender.
791 * The address of the recipients.
797 * The address of the cc. recipients.
803 * The address of the bcc. recipients.
1175 * An address used in MMS or SMS. Email addresses are
1181 public static final String ADDRESS = "address";
1382 public static String extractAddrSpec(String address) {
1383 Matcher match = NAME_ADDR_EMAIL_PATTERN.matcher(address);
1388 return address;
1392 * Returns true if the address is an email address
1394 * @param address the input address to be tested
1395 * @return true if address is an email address
1397 public static boolean isEmailAddress(String address) {
1398 if (TextUtils.isEmpty(address)) {
1402 String s = extractAddrSpec(address);
1488 * The ID of MM which this address entry belongs to.
1498 * The address text.
1500 public static final String ADDRESS = "address";
1503 * Type of address, must be one of PduHeaders.BCC,