Home | History | Annotate | Download | only in content

Lines Matching defs:authority

29     public final String authority;
39 public SyncAdapterType(String authority, String accountType, boolean userVisible,
41 if (TextUtils.isEmpty(authority)) {
42 throw new IllegalArgumentException("the authority must not be empty: " + authority);
47 this.authority = authority;
59 public SyncAdapterType(String authority, String accountType, boolean userVisible,
65 if (TextUtils.isEmpty(authority)) {
66 throw new IllegalArgumentException("the authority must not be empty: " + authority);
71 this.authority = authority;
82 private SyncAdapterType(String authority, String accountType) {
83 if (TextUtils.isEmpty(authority)) {
84 throw new IllegalArgumentException("the authority must not be empty: " + authority);
89 this.authority = authority;
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);
181 result = 31 * result + authority.hashCode();
189 return "SyncAdapterType Key {name=" + authority
193 return "SyncAdapterType {name=" + authority
214 dest.writeString(authority);