Home | History | Annotate | Download | only in cts

Lines Matching defs:account

3 import android.accounts.Account;
10 private Account account;
14 account = new Account("abc@xyz.org", "com.my.auth");
19 new Account(null, "com.my.auth");
27 new Account("abc@xyz.org", null);
34 assertEquals(0, account.describeContents());
40 account.writeToParcel(parcel, 0);
43 // Create a new account object from just populated parcel,
44 // and verify it is equivalent to the original account.
45 Account newAccount = new Account(parcel);
46 assertEquals(account, newAccount);