Searched refs:fromAddress (Results 1 – 5 of 5) sorted by relevance
/packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/ |
D | SmsMessageReceiver.java | 44 String fromAddress = message.getOriginatingAddress(); in onReceive() local 47 Log.i(LOG_TAG, "From: " + fromAddress + " message: " + messageBody); in onReceive() 49 addNotification(context, fromAddress, messageBody); in onReceive() 53 private void addNotification(Context context, String fromAddress, String message) { in addNotification() argument 59 .setContentTitle(fromAddress) in addNotification() 62 .setContentIntent(createDisplayMessageIntent(context, fromAddress, message, in addNotification() 73 private PendingIntent createDisplayMessageIntent(Context context, String fromAddress, in createDisplayMessageIntent() argument 80 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, fromAddress); in createDisplayMessageIntent()
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | NotificationUtils.java | 1037 String fromAddress = ""; in configureLatestEventInfoFromConversation() local 1040 fromAddress = message.getFrom(); in configureLatestEventInfoFromConversation() 1041 if (fromAddress == null) { in configureLatestEventInfoFromConversation() 1042 fromAddress = ""; in configureLatestEventInfoFromConversation() 1044 from = getDisplayableSender(fromAddress); in configureLatestEventInfoFromConversation() 1045 addEmailAddressToSet(fromAddress, senderAddressesSet); in configureLatestEventInfoFromConversation() 1050 !fromAddress.contentEquals(message.getFrom())) { in configureLatestEventInfoFromConversation() 1217 String fromAddress = ""; in configureNotifForOneConversation() local 1220 fromAddress = message.getFrom(); in configureNotifForOneConversation() 1221 if (fromAddress == null) { in configureNotifForOneConversation() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/print/ |
D | PrintUtils.java | 160 final Address fromAddress = Utils.getAddress(addressCache, message.getFrom()); in appendSingleMessageHtml() local 164 templates.appendMessage(fromAddress == null ? "" : fromAddress.getPersonal(), in appendSingleMessageHtml() 165 fromAddress == null ? "" : fromAddress.getAddress(), date, in appendSingleMessageHtml()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Account.java | 852 public boolean ownsFromAddress(String fromAddress) { in ownsFromAddress() argument 854 if (TextUtils.equals(replyFrom.address, fromAddress)) { in ownsFromAddress()
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
D | ComposeActivity.java | 2075 final String fromAddress = fromAddresses.length > 0 ? fromAddresses[0] : null; in initReplyRecipients() local 2077 refMessage.getReplyToAddressesUnescaped(), fromAddress); in initReplyRecipients() 2084 toAddresses = initToRecipients(fromAddress, replyToAddresses, sentToAddresses); in initReplyRecipients() 2088 toAddresses = initToRecipients(fromAddress, replyToAddresses, sentToAddresses); in initReplyRecipients()
|