HomeSort by relevance Sort by last modified time
    Searched refs:dataSet (Results 1 - 25 of 61) sorted by null

1 2 3

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java 42 /** dataSet may be null, but never be "". */
43 public final String dataSet;
45 private AccountTypeWithDataSet(String accountType, String dataSet) {
47 this.dataSet = TextUtils.isEmpty(dataSet) ? null : dataSet;
50 public static AccountTypeWithDataSet get(String accountType, String dataSet) {
51 return new AccountTypeWithDataSet(accountType, dataSet);
62 if (TextUtils.isEmpty(dataSet)) {
67 args = new String[] {accountType, dataSet};
    [all...]
AccountWithDataSet.java 48 public final String dataSet;
56 public AccountWithDataSet(String name, String type, String dataSet) {
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...]
FallbackAccountType.java 31 this.dataSet = null;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListFilter.java 52 private static final String KEY_DATA_SET = "filter.dataSet";
57 public final String dataSet;
61 public ContactListFilter(int filterType, String accountType, String accountName, String dataSet,
66 this.dataSet = dataSet;
75 String dataSet, Drawable icon) {
77 accountName, dataSet, icon);
103 return "account: " + accountType + (dataSet != null ? "/" + dataSet : "")
131 if (dataSet != null)
    [all...]
CustomContactListFilterActivity.java 139 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 == null)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 34 public AccountWithDataSet(String accountName, String accountType, String dataSet) {
37 mDataSet = emptyToNull(dataSet);
44 public static AccountWithDataSet get(String accountName, String accountType, String dataSet) {
45 return new AccountWithDataSet(accountName, accountType, dataSet);
48 public static AccountWithDataSet get(Account account, String dataSet) {
89 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet="
  /hardware/invensense/mlsdk/mllite/
mlarray_legacy.c 79 * @param dataSet
88 inv_error_t inv_get_array(int dataSet, long *data)
91 switch (dataSet) {
377 * @param dataSet
386 inv_error_t inv_get_float_array(int dataSet, float *data)
389 switch (dataSet) {
502 * @param dataSet A constant specifying an array of data.
507 inv_error_t inv_set_array(int dataSet, long *data)
511 switch (dataSet) {
552 * @param dataSet A constant specifying an array of data
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaData.java 31 public GroupMetaData(String accountName, String accountType, String dataSet, long groupId,
35 this.mDataSet = dataSet;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 31 public GroupListItem(String accountName, String accountType, String dataSet, long groupId,
35 mDataSet = dataSet;
GroupDetailDisplayUtils.java 42 String dataSet) {
44 AccountType accountType = accountTypeManager.getAccountType(accountTypeString, dataSet);
GroupDetailFragment.java 76 * The account type and dataset have been determined.
78 public void onAccountTypeUpdated(String accountTypeString, String dataSet);
300 final String dataSet = cursor.getString(GroupMetaDataLoader.DATA_SET);
301 updateAccountType(accountTypeString, dataSet);
345 private void updateAccountType(final String accountTypeString, final String dataSet) {
348 manager.getAccountType(accountTypeString, dataSet);
356 mListener.onAccountTypeUpdated(accountTypeString, dataSet);
376 accountTypeString, dataSet);
GroupBrowseListAdapter.java 121 String dataSet = mCursor.getString(GroupListLoader.DATA_SET);
138 Objects.equal(dataSet, previousGroupDataSet)) {
143 return new GroupListItem(accountName, accountType, dataSet, groupId, title,
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 34 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,
  /packages/apps/Contacts/tests/src/com/android/contacts/editor/
ContactEditorUtilsTest.java 50 "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) {
304 this.dataSet = dataSet;
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemEntry.java 61 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;
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
AccountTypeManagerTest.java 130 return new AccountWithDataSet(name, type.accountType, type.dataSet);
177 public MockAccountType(String type, String dataSet, String inviteContactActivityClassName) {
179 this.dataSet = dataSet;
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockAccountTypeManager.java 47 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 118 String dataSet = rawContact.dataSet;
122 AccountType type = accountTypes.getAccountType(accountType, dataSet);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
SelectAccountActivity.java 71 intent.putExtra(DATA_SET, account.dataSet);
90 intent.putExtra(DATA_SET, account.dataSet);
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContact.java 286 private void setAccount(String accountName, String accountType, String dataSet) {
289 if (accountType == null && dataSet == null) {
298 // This is a valid account, either with or without a dataSet.
301 if (dataSet == null) {
304 values.put(RawContacts.DATA_SET, dataSet);
314 setAccount(accountWithDataSet.name, accountWithDataSet.type, accountWithDataSet.dataSet);
  /packages/apps/Contacts/src/com/android/contacts/activities/
GroupDetailActivity.java 92 public void onAccountTypeUpdated(String accountTypeString, String dataSet) {
94 mDataSet = dataSet;
ContactEditorActivity.java 207 account.type, account.dataSet);
219 intent.putExtra(RawContacts.DATA_SET, account.dataSet);
232 account.type, account.dataSet);
  /frameworks/base/core/java/android/widget/
SimpleAdapter.java 147 final Map dataSet = mData.get(position);
148 if (dataSet == null) {
160 final Object data = dataSet.get(from[i]);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
AccountSelectionUtil.java 124 account.type, account.dataSet);
172 importIntent.putExtra("data_set", account.dataSet);
183 importIntent.putExtra("data_set", account.dataSet);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 126 public final AccountType getAccountType(String accountType, String dataSet) {
127 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
151 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
254 aDataSet = ((AccountWithDataSet) a).dataSet;
257 bDataSet = ((AccountWithDataSet) b).dataSet;
474 + accountType.accountType + ", dataSet=" + accountType.dataSet
502 account.name, account.type, accountType.dataSet);
597 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
    [all...]

Completed in 1078 milliseconds

1 2 3