Home | History | Annotate | Download | only in content

Lines Matching defs:accountType

30     public final String accountType;
39 public SyncAdapterType(String authority, String accountType, boolean userVisible,
44 if (TextUtils.isEmpty(accountType)) {
45 throw new IllegalArgumentException("the accountType must not be empty: " + accountType);
48 this.accountType = accountType;
59 public SyncAdapterType(String authority, String accountType, boolean userVisible,
68 if (TextUtils.isEmpty(accountType)) {
69 throw new IllegalArgumentException("the accountType must not be empty: " + accountType);
72 this.accountType = accountType;
82 private SyncAdapterType(String authority, String accountType) {
86 if (TextUtils.isEmpty(accountType)) {
87 throw new IllegalArgumentException("the accountType must not be empty: " + accountType);
90 this.accountType = accountType;
167 public static SyncAdapterType newKey(String authority, String accountType) {
168 return new SyncAdapterType(authority, accountType);
176 return authority.equals(other.authority) && accountType.equals(other.accountType);
182 result = 31 * result + accountType.hashCode();
190 + ", type=" + accountType
194 + ", type=" + accountType
215 dest.writeString(accountType);