Searched defs:dataSet (Results 1 - 23 of 23) sorted by path

/packages/apps/Contacts/src/com/android/contacts/
H A DGroupMetaData.java31 public GroupMetaData(String accountName, String accountType, String dataSet, long groupId, argument
35 this.mDataSet = dataSet;
H A DSplitAggregateView.java118 String dataSet; field in class:SplitAggregateView.RawContactInfo
168 info.dataSet = cursor.getString(SplitQuery.DATA_SET);
251 AccountType accountType = mAccountTypes.getAccountType(info.accountType, info.dataSet);
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DPeopleActivity.java1321 public void onAccountTypeUpdated(String accountTypeString, String dataSet) { argument
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java61 public String dataSet; field in class:AggregationSuggestionEngine.RawContact
66 + " dataSet: " + dataSet;
397 rawContact.dataSet = mDataCursor.getString(DataQuery.DATA_SET);
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupDetailDisplayUtils.java42 String dataSet) {
44 AccountType accountType = accountTypeManager.getAccountType(accountTypeString, dataSet);
41 bindGroupSourceView(Context context, View view, String accountTypeString, String dataSet) argument
H A DGroupDetailFragment.java78 public void onAccountTypeUpdated(String accountTypeString, String dataSet); argument
299 final String dataSet = cursor.getString(GroupMetaDataLoader.DATA_SET);
300 updateAccountType(accountTypeString, dataSet);
342 private void updateAccountType(final String accountTypeString, final String dataSet) { argument
348 mListener.onAccountTypeUpdated(accountTypeString, dataSet);
354 manager.getAccountType(accountTypeString, dataSet);
372 accountTypeString, dataSet);
H A DGroupListItem.java31 public GroupListItem(String accountName, String accountType, String dataSet, long groupId, argument
35 mDataSet = dataSet;
H A DSuggestedMemberListAdapter.java102 public void setDataSet(String dataSet) { argument
103 mDataSet = dataSet;
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DGroupCreationDialogFragment.java34 private static final String ARG_DATA_SET = "dataSet";
46 String dataSet, OnGroupCreatedListener listener) {
51 args.putString(ARG_DATA_SET, dataSet);
84 String dataSet = arguments.getString(ARG_DATA_SET);
95 new AccountWithDataSet(accountName, accountType, dataSet), groupLabel,
44 show( FragmentManager fragmentManager, String accountType, String accountName, String dataSet, OnGroupCreatedListener listener) argument
H A DPhoneNumberInteraction.java92 String dataSet; field in class:PhoneNumberInteraction.PhoneItem
105 this.dataSet = in.readString();
116 dest.writeString(dataSet);
181 item.accountType, item.dataSet);
397 item.dataSet = cursor.getString(cursor.getColumnIndex(RawContacts.DATA_SET));
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListFilter.java52 private static final String KEY_DATA_SET = "filter.dataSet";
57 public final String dataSet; field in class:ContactListFilter
61 public ContactListFilter(int filterType, String accountType, String accountName, String dataSet, argument
66 this.dataSet = dataSet;
75 String dataSet, Drawable icon) {
77 accountName, dataSet, icon);
103 return "account: " + accountType + (dataSet != null ? "/" + dataSet : "")
131 if (dataSet !
74 createAccountFilter(String accountType, String accountName, String dataSet, Drawable icon) argument
[all...]
H A DCustomContactListFilterActivity.java140 new AccountDisplay(resolver, account.name, account.type, account.dataSet);
145 if (account.dataSet != null) {
146 groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
164 account.dataSet, hasGroups);
254 String accountType, String dataSet, boolean accountHasGroups) {
258 if (dataSet != null) {
259 settingsUri.appendQueryParameter(Settings.DATA_SET, dataSet);
269 values.put(Settings.DATA_SET, dataSet);
378 String dataSet = this.getAsString(Settings.DATA_SET);
382 if (dataSet
253 fromSettings(ContentResolver resolver, String accountName, String accountType, String dataSet, boolean accountHasGroups) argument
465 AccountDisplay(ContentResolver resolver, String accountName, String accountType, String dataSet) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/model/
H A DAccountTypeManager.java115 public final AccountType getAccountType(String accountType, String dataSet) { argument
116 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
140 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
143 public DataKind getKindOrFallback(String accountType, String dataSet, String mimeType) { argument
144 final AccountType type = getAccountType(accountType, dataSet);
244 aDataSet = ((AccountWithDataSet) a).dataSet;
247 bDataSet = ((AccountWithDataSet) b).dataSet;
464 + accountType.accountType + ", dataSet=" + accountType.dataSet
492 account.name, account.type, accountType.dataSet);
591 getKindOrFallback(String accountType, String dataSet, String mimeType) argument
[all...]
H A DRawContact.java196 private void setAccount(String accountName, String accountType, String dataSet) { argument
199 if (accountType == null && dataSet == null) {
208 // This is a valid account, either with or without a dataSet.
211 if (dataSet == null) {
214 values.put(RawContacts.DATA_SET, dataSet);
224 setAccount(accountWithDataSet.name, accountWithDataSet.type, accountWithDataSet.dataSet);
/packages/apps/Contacts/src/com/android/contacts/model/account/
H A DAccountType.java62 public String dataSet = null; field in class:AccountType
234 return AccountTypeWithDataSet.get(accountType, dataSet);
H A DAccountTypeWithDataSet.java42 /** dataSet may be null, but never be "". */
43 public final String dataSet; field in class:AccountTypeWithDataSet
45 private AccountTypeWithDataSet(String accountType, String dataSet) { argument
47 this.dataSet = TextUtils.isEmpty(dataSet) ? null : dataSet;
50 public static AccountTypeWithDataSet get(String accountType, String dataSet) { argument
51 return new AccountTypeWithDataSet(accountType, dataSet);
62 if (TextUtils.isEmpty(dataSet)) {
67 args = new String[] {accountType, dataSet};
[all...]
H A DAccountWithDataSet.java48 public final String dataSet; field in class:AccountWithDataSet
56 public AccountWithDataSet(String name, String type, String dataSet) { argument
58 this.dataSet = dataSet;
59 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet);
64 this.dataSet = in.readString();
65 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet);
71 dest.writeString(dataSet);
98 if (TextUtils.isEmpty(dataSet)) {
103 args = new String[] {type, name, dataSet};
[all...]
/packages/apps/Contacts/src/com/android/contacts/util/
H A DStreamItemEntry.java61 long timestamp, String accountType, String accountName, String dataSet,
63 return new StreamItemEntry(id, text, comments, timestamp, accountType, accountName, dataSet,
68 String accountType, String accountName, String dataSet, String resPackage,
76 mDataSet = dataSet;
60 createForTest(long id, String text, String comments, long timestamp, String accountType, String accountName, String dataSet, String resPackage, String iconRes, String labelRes) argument
67 StreamItemEntry(long id, String text, String comments, long timestamp, String accountType, String accountName, String dataSet, String resPackage, String iconRes, String labelRes) argument
/packages/apps/Contacts/tests/src/com/android/contacts/editor/
H A DContactEditorUtilsTest.java50 "a", TYPE1.accountType, TYPE1.dataSet);
52 "b", TYPE1.accountType, TYPE1.dataSet);
55 "a", TYPE2.accountType, TYPE2.dataSet);
57 "a", TYPE2EX.accountType, TYPE2EX.dataSet);
60 "c", TYPE3.accountType, TYPE3.dataSet);
302 public MockAccountType(String accountType, String dataSet, boolean areContactsWritable) { argument
304 this.dataSet = dataSet;
/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DAccountTypeManagerTest.java130 return new AccountWithDataSet(name, type.accountType, type.dataSet);
177 public MockAccountType(String type, String dataSet, String inviteContactActivityClassName) { argument
179 this.dataSet = dataSet;
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DAllIntentsActivity.java630 public void onAccountChosen(Account account, String dataSet, int tag) { argument
635 intent.putExtra(Insert.DATA_SET, dataSet);
643 intent.putExtra(Insert.DATA_SET, dataSet);
H A DSelectAccountDialogFragment.java79 // We currently do not pass the dataSet argument to the listener. To do so, we would
80 // have to determine the dataSet as it is done in AccountTypeManager.
99 void onAccountChosen(Account account, String dataSet, int tag); argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAccountWithDataSet.java34 public AccountWithDataSet(String accountName, String accountType, String dataSet) { argument
37 mDataSet = emptyToNull(dataSet);
44 public static AccountWithDataSet get(String accountName, String accountType, String dataSet) { argument
45 return new AccountWithDataSet(accountName, accountType, dataSet);
48 public static AccountWithDataSet get(Account account, String dataSet) { argument
89 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet="

Completed in 222 milliseconds