Searched refs:showBcc (Results 1 - 2 of 2) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DCcBccView.java49 public void show(boolean animate, boolean showCc, boolean showBcc) { argument
52 mBcc.setVisibility(showBcc ? View.VISIBLE : View.GONE);
59 if (showBcc) {
H A DComposeActivity.java164 private static final String EXTRA_SHOW_BCC = "showBcc";
869 boolean showBcc = !TextUtils.isEmpty(mBcc.getText()) || (savedInstanceState != null &&
871 mCcBccView.show(false /* animate */, showCc, showBcc);
3506 boolean showBcc = false;
3510 showBcc = !TextUtils.isEmpty(mDraft.getBcc());
3513 showCc = showBcc
3518 showBcc = !TextUtils.isEmpty(mBcc.getText());
3520 mCcBccView.show(false /* animate */, showCc, showBcc);

Completed in 64 milliseconds