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

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java50 public class Account implements Parcelable { class in inherits:Parcelable
65 * Account manager name. MUST MATCH SYSTEM ACCOUNT MANAGER NAME
75 * Account type. MUST MATCH SYSTEM ACCOUNT MANAGER TYPE
81 * Cached android.accounts.Account based on the above two values
84 private android.accounts.Account amAccount;
299 public Account buildFrom(Cursor cursor) {
300 return new Account(cursor);
303 public Account buildFrom(JSONObject json) throws JSONException {
304 return new Account(json);
307 public Account buildFro
366 protected Account(JSONObject json) throws JSONException { method in class:Account
432 protected Account(Cursor cursor) { method in class:Account
569 protected Account(Parcel in, ClassLoader loader) { method in class:Account
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DAccount.java43 public final class Account extends EmailContent implements Parcelable { class in inherits:EmailContent,Parcelable
44 public static final String TABLE_NAME = "Account";
111 // Sentinel values for the mSyncInterval field of both Account records
199 public Account() { method in class:Account
209 public static Account restoreAccountWithId(Context context, long id) {
213 public static Account restoreAccountWithId(Context context, long id, ContentObserver observer) {
214 return EmailContent.restoreContentWithId(context, Account.class,
215 Account.CONTENT_URI, Account.CONTENT_PROJECTION, id, observer);
218 public static Account restoreAccountWithAddres
905 public Account(Parcel in) { method in class:Account
[all...]

Completed in 75 milliseconds