HomeSort by relevance Sort by last modified time
    Searched refs:ReplyFromAccount (Results 1 - 7 of 7) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinner.java 28 import com.android.mail.providers.ReplyFromAccount;
38 private ReplyFromAccount mAccount;
39 private final List<ReplyFromAccount> mReplyFromAccounts = Lists.newArrayList();
50 public void setCurrentAccount(ReplyFromAccount account) {
60 for (ReplyFromAccount acct : mReplyFromAccounts) {
70 public ReplyFromAccount getMatchingReplyFromAccount(String accountString) {
72 for (ReplyFromAccount acct : mReplyFromAccounts) {
73 // TODO: Do not key off ReplyFromAccount.name b/11292541
82 public ReplyFromAccount getCurrentAccount() {
140 public List<ReplyFromAccount> getReplyFromAccounts()
    [all...]
FromAddressSpinnerAdapter.java 28 import com.android.mail.providers.ReplyFromAccount;
38 public class FromAddressSpinnerAdapter extends ArrayAdapter<ReplyFromAccount> {
77 ReplyFromAccount fromItem = getItem(position);
90 ReplyFromAccount fromItem = getItem(position);
110 public void addAccounts(List<ReplyFromAccount> replyFromAccounts) {
112 for (ReplyFromAccount account : replyFromAccounts) {
ComposeActivity.java 89 import com.android.mail.providers.ReplyFromAccount;
218 private static final String EXTRA_SELECTED_REPLY_FROM_ACCOUNT = "replyFromAccount";
244 protected ReplyFromAccount mReplyFromAccount;
269 private ReplyFromAccount mDraftAccount;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
ReplyFromAccount.java 34 public class ReplyFromAccount implements Serializable {
53 public ReplyFromAccount(Account account, Uri baseAccountUri, String address, String name,
79 public static ReplyFromAccount deserialize(Account account, JSONObject json) {
80 ReplyFromAccount replyFromAccount = null;
88 replyFromAccount = new ReplyFromAccount(account, uri, addressString, nameString,
91 LogUtils.wtf(LOG_TAG, e, "Could not deserialize replyfromaccount");
93 return replyFromAccount;
96 public static ReplyFromAccount deserialize(Account account, String stringExtra)
    [all...]
Account.java 228 private transient List<ReplyFromAccount> mReplyFroms;
705 public List<ReplyFromAccount> getReplyFroms() {
718 mReplyFroms.add(new ReplyFromAccount(this, uri, getEmailAddress(), name,
726 final ReplyFromAccount a = ReplyFromAccount.deserialize(this,
747 for (ReplyFromAccount replyFrom : getReplyFroms()) {
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
ComposeActivityTest.java 36 import com.android.mail.providers.ReplyFromAccount;
143 ReplyFromAccount a = new ReplyFromAccount(mAccount, mAccount.uri, customFrom,
148 ReplyFromAccount currentAccount = new ReplyFromAccount(mAccount, mAccount.uri,
182 ReplyFromAccount currentAccount = new ReplyFromAccount(mAccount, mAccount.uri,
216 ReplyFromAccount a = new ReplyFromAccount(mAccount, mAccount.uri, customFrom,
221 ReplyFromAccount currentAccount = new ReplyFromAccount(mAccount, mAccount.uri
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockUiProvider.java 31 import com.android.mail.providers.ReplyFromAccount;
332 ArrayList<ReplyFromAccount> list = new ArrayList<ReplyFromAccount>();
333 list.add(new ReplyFromAccount(null, Uri.parse(accountUri), "customAddress1@custom.com",
335 list.add(new ReplyFromAccount(null, Uri.parse(accountUri), "customAddress2@custom.com",
337 for (ReplyFromAccount a : list) {

Completed in 637 milliseconds