/packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/ |
D | ComposeActivityTest.java | 159 String[] bcc = activity.getBccAddresses(); in testRecipientsRefReplyAllCustomFromReplyTo() 164 assertEquals(0, bcc.length); in testRecipientsRefReplyAllCustomFromReplyTo() 196 String[] bcc = activity.getBccAddresses(); in testRecipientsRefReplyAllOnlyAccount() 201 assertEquals(0, bcc.length); in testRecipientsRefReplyAllOnlyAccount() 237 String[] bcc = activity.getBccAddresses(); in testRecipientsRefReplyAllOnlyCustomFrom() 242 assertEquals(0, bcc.length); in testRecipientsRefReplyAllOnlyCustomFrom() 259 String[] bcc = activity.getBccAddresses(); in testReply() 264 assertTrue(bcc.length == 0); in testReply() 282 String[] bcc = activity.getBccAddresses(); in testReplyWithReplyTo() 287 assertTrue(bcc.length == 0); in testReplyWithReplyTo() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapbMessageMime.java | 146 private ArrayList<Rfc822Token> bcc = null; // Can be empty field in BluetoothMapbMessageMime 254 return bcc; in getBcc() 256 public void setBcc(ArrayList<Rfc822Token> bcc) { in setBcc() argument 257 this.bcc = bcc; in setBcc() 260 if(this.bcc == null) in addBcc() 261 this.bcc = new ArrayList<Rfc822Token>(1); in addBcc() 262 this.bcc.add(new Rfc822Token(name, address, null)); in addBcc() 389 if(to == null && cc == null && bcc == null) in encodeHeaders() 395 if(bcc != null) in encodeHeaders() 396 encodeHeaderAddresses(sb, "Bcc: ", bcc); // This includes folding if needed. in encodeHeaders() [all …]
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
D | MessageHeaderViewTest.java | 46 String[] bcc = makeRecipientArray("BB", 60); in testRecipientSummaryLongMultipleLists() local 48 bcc, new HashMap<String, Address>(), null, BidiFormatter.getInstance()).toString(); in testRecipientSummaryLongMultipleLists()
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
D | ComposeActivity.java | 1363 mBcc = (RecipientEditTextView) findViewById(R.id.bcc); in findViews() 1817 List<String> bcc = uri.getQueryParameters("bcc"); in initFromMailTo() local 1818 addBccAddresses(Arrays.asList(bcc.toArray(new String[bcc.size()]))); in initFromMailTo() 2947 final String[] to, cc, bcc; 2949 to = cc = bcc = new String[0]; 2953 bcc = getBccAddresses(); 2958 recipients.addAll(buildEmailAddressList(bcc)); 2962 if (!save && (to.length == 0 && cc.length == 0 && bcc.length == 0)) { 2971 checkInvalidEmails(bcc, wrongEmails);
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
D | SmtpSender.java | 192 Address[] bcc = Address.fromHeader(message.mBcc); in sendMessage() local 202 for (Address address : bcc) { in sendMessage()
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
D | MessageHeaderView.java | 709 String myName, String[] to, String[] cc, String[] bcc, in getRecipientSummaryText() argument 718 builder.appendBcc(bcc); in getRecipientSummaryText() 1265 String[] to, String[] cc, String[] bcc, CharSequence receivedTimestamp, in renderExpandedDetails() argument 1275 renderEmailList(res, R.id.bcc_heading, R.id.bcc_details, bcc, viaDomain, in renderExpandedDetails()
|
/packages/apps/UnifiedEmail/src/com/android/mail/print/ |
D | PrintUtils.java | 204 final String bcc = renderEmailList(res, message.getBccAddresses(), addressCache); in renderRecipients() local 205 buildEmailDiv(res, recipients, bcc, DIV_START, DIV_END, in renderRecipients()
|
/packages/apps/Email/provider_src/com/android/email/ |
D | LegacyConversions.java | 85 final Address[] bcc = message.getRecipients(Message.RecipientType.BCC); in updateMessageFields() local 144 localMessage.mBcc = Address.toString(bcc); in updateMessageFields()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Message.java | 548 public synchronized void setBcc(final String bcc) { in setBcc() argument 549 mBcc = bcc; in setBcc()
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
D | EmailProvider.java | 6081 final String bcc = values.getAsString(Message.MessageColumns.BCC_LIST); in decodeEmailAddresses() local 6082 values.put(Message.MessageColumns.BCC_LIST, Address.fromHeaderToString(bcc)); in decodeEmailAddresses()
|