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

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java49 public class Account implements Parcelable { class in inherits:Parcelable
64 * Account manager name. MUST MATCH SYSTEM ACCOUNT MANAGER NAME
74 * Account type. MUST MATCH SYSTEM ACCOUNT MANAGER TYPE
79 * Cached android.accounts.Account based on the above two values
81 private android.accounts.Account amAccount;
311 public Account buildFrom(Cursor cursor) {
312 return new Account(cursor);
315 public Account buildFrom(JSONObject json) throws JSONException {
316 return new Account(json);
319 public Account buildFro
378 protected Account(JSONObject json) throws JSONException { method in class:Account
445 protected Account(Cursor cursor) { method in class:Account
596 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
911 public Account(Parcel in) { method in class:Account
[all...]

Completed in 65 milliseconds