Searched defs:dataSet (Results 1 - 21 of 21) sorted by relevance

/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 DGroupListItem.java31 public GroupListItem(String accountName, String accountType, String dataSet, long groupId, argument
35 mDataSet = dataSet;
H A DSuggestedMemberListAdapter.java103 public void setDataSet(String dataSet) { argument
104 mDataSet = dataSet;
H A DGroupDetailFragment.java80 public void onAccountTypeUpdated(String accountTypeString, String dataSet); argument
310 final String dataSet = cursor.getString(GroupMetaDataLoader.DATA_SET);
311 updateAccountType(accountTypeString, dataSet);
361 private void updateAccountType(final String accountTypeString, final String dataSet) { argument
364 manager.getAccountType(accountTypeString, dataSet);
372 mListener.onAccountTypeUpdated(accountTypeString, dataSet);
392 accountTypeString, dataSet);
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
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
H A DAllIntentsActivity.java651 public void onAccountChosen(Account account, String dataSet, int tag) { argument
656 intent.putExtra(Insert.DATA_SET, dataSet);
664 intent.putExtra(Insert.DATA_SET, dataSet);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
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...]
H A DAccountType.java61 public String dataSet = null; field in class:AccountType
223 return AccountTypeWithDataSet.get(accountType, 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
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DGroupMetaData.java31 public GroupMetaData(String accountName, String accountType, String dataSet, long groupId, argument
35 this.mDataSet = dataSet;
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/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/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="
/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/src/com/android/contacts/
H A DSplitAggregateView.java118 String dataSet; field in class:SplitAggregateView.RawContactInfo
171 info.dataSet = cursor.getString(SplitQuery.DATA_SET);
254 AccountType accountType = mAccountTypes.getAccountType(info.accountType, info.dataSet);
/packages/apps/ContactsCommon/src/com/android/contacts/common/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.java139 new AccountDisplay(resolver, account.name, account.type, account.dataSet);
144 if (account.dataSet != null) {
145 groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
163 account.dataSet, hasGroups);
253 String accountType, String dataSet, boolean accountHasGroups) {
257 if (dataSet != null) {
258 settingsUri.appendQueryParameter(Settings.DATA_SET, dataSet);
268 values.put(Settings.DATA_SET, dataSet);
377 String dataSet = this.getAsString(Settings.DATA_SET);
381 if (dataSet
252 fromSettings(ContentResolver resolver, String accountName, String accountType, String dataSet, boolean accountHasGroups) argument
464 AccountDisplay(ContentResolver resolver, String accountName, String accountType, String dataSet) argument
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContact.java271 private void setAccount(String accountName, String accountType, String dataSet) { argument
274 if (accountType == null && dataSet == null) {
283 // This is a valid account, either with or without a dataSet.
286 if (dataSet == null) {
289 values.put(RawContacts.DATA_SET, dataSet);
299 setAccount(accountWithDataSet.name, accountWithDataSet.type, accountWithDataSet.dataSet);
H A DAccountTypeManager.java124 public final AccountType getAccountType(String accountType, String dataSet) { argument
125 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
149 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
252 aDataSet = ((AccountWithDataSet) a).dataSet;
255 bDataSet = ((AccountWithDataSet) b).dataSet;
469 + accountType.accountType + ", dataSet=" + accountType.dataSet
490 account.name, account.type, accountType.dataSet);
585 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java61 public String dataSet; field in class:AggregationSuggestionEngine.RawContact
66 + " dataSet: " + dataSet;
401 rawContact.dataSet = mDataCursor.getString(DataQuery.DATA_SET);
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java84 String dataSet; field in class:PhoneNumberInteraction.PhoneItem
97 this.dataSet = in.readString();
108 dest.writeString(dataSet);
408 item.dataSet = cursor.getString(DATA_SET);

Completed in 411 milliseconds