Searched defs:Account (Results 1 - 2 of 2) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java47 public class Account implements Parcelable { class in inherits:Parcelable
63 * Account manager name. MUST MATCH SYSTEM ACCOUNT MANAGER NAME
69 * Account type. MUST MATCH SYSTEM ACCOUNT MANAGER TYPE
75 * Cached android.accounts.Account based on the above two values
78 private android.accounts.Account amAccount;
279 * Create a new instance of an Account object using a serialized instance created previously
284 * @return Account object
286 public static Account newinstance(String serializedAccount) {
287 // The heavy lifting is done by Account(name, type, serializedAccount). This method
295 return new Account(nam
316 private Account(String acctName, String acctType, String jsonAccount) throws JSONException { method in class:Account
381 public Account(Cursor cursor) { method in class:Account
503 public Account(Parcel in, ClassLoader loader) { method in class:Account
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DAccount.java44 public final class Account extends EmailContent implements AccountColumns, Parcelable { class in inherits:EmailContent,AccountColumns,Parcelable
45 public static final String TABLE_NAME = "Account";
112 // Sentinel values for the mSyncInterval field of both Account records
204 Account.POLICY_KEY + " IS NOT NULL AND " + Account.POLICY_KEY + "!=0";
213 public Account() { method in class:Account
224 public static Account restoreAccountWithId(Context context, long id) {
225 return EmailContent.restoreContentWithId(context, Account.class,
226 Account.CONTENT_URI, Account
893 public Account(Parcel in) { method in class:Account
[all...]

Completed in 93 milliseconds