Lines Matching refs:address

901             // There may not be a photo yet if anything but the first contact address
1298 * Create a chip that represents just the email address of a recipient. At some later
1388 // Otherwise, fallback to just creating an editable email address chip.
1420 * contact information including display text, address, and id.
1521 // address so we won't try to replace the user's potentially correct but
1940 String address = entry.getDestination();
1941 if (TextUtils.isEmpty(display) || TextUtils.equals(display, address)) {
1945 if (isPhoneQuery() && PhoneUtil.isPhoneNumber(address)) {
1946 trimmedDisplayText = address.trim();
1948 if (address != null) {
1949 // Tokenize out the address in case the address already
1951 Rfc822Token[] tokenized = Rfc822Tokenizer.tokenize(address);
1953 address = tokenized[0].getAddress();
1956 Rfc822Token token = new Rfc822Token(display, address, null);
1969 String address = entry.getDestination();
1970 if (TextUtils.isEmpty(display) || TextUtils.equals(display, address)) {
1975 } else if (!TextUtils.isEmpty(address)){
1976 return address;
1978 return new Rfc822Token(display, address, null).toString();
2067 // If the display name and the address are the same, or if this is a
2303 * Show specified chip as selected. If the RecipientChip is just an email address,
2307 * will show a popup window with the address in use highlighted and any other
2613 // Check if this is a valid email address. If it is,
3083 // Copy the selected chip email address.
3133 String address = currentChip.getEntry().getDestination();
3134 ClipData data = ClipData.newPlainText(address, address + COMMIT_CHAR_COMMA);
3187 private void showCopyDialog(final String address) {
3193 final DialogFragment fragment = CopyDialog.newInstance(address);