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

  /packages/apps/Email/src/com/android/email/
Preferences.java 32 private static final String ACCOUNT_UUIDS = "accountUuids";
67 String accountUuids = mSharedPreferences.getString(ACCOUNT_UUIDS, null);
68 if (accountUuids == null || accountUuids.length() == 0) {
71 String[] uuids = accountUuids.split(",");
91 String accountUuids = mSharedPreferences.getString(ACCOUNT_UUIDS, null);
92 if (accountUuids == null || accountUuids.length() == 0) {
95 String[] uuids = accountUuids.split(",");
Account.java 253 String[] uuids = preferences.mSharedPreferences.getString("accountUuids", "").split(",");
263 String accountUuids = sb.toString();
265 editor.putString("accountUuids", accountUuids);
300 if (!preferences.mSharedPreferences.getString("accountUuids", "").contains(mUuid)) {
326 String accountUuids = preferences.mSharedPreferences.getString("accountUuids", "");
327 accountUuids += (accountUuids.length() != 0 ? "," : "") + mUuid;
329 editor.putString("accountUuids", accountUuids)
    [all...]

Completed in 21 milliseconds