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

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/model/
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 49 public final String dataSet;
57 public AccountWithDataSet(String name, String type, String dataSet) {
59 this.dataSet = dataSet;
60 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet);
65 this.dataSet = in.readString();
66 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet);
72 dest.writeString(dataSet);
99 if (TextUtils.isEmpty(dataSet)) {
104 args = new String[] {type, name, dataSet};
    [all...]
FallbackAccountType.java 29 this.dataSet = null;
AccountTypeManager.java 109 public final AccountType getAccountType(String accountType, String dataSet) {
110 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
134 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
137 public DataKind getKindOrFallback(String accountType, String dataSet, String mimeType) {
138 final AccountType type = getAccountType(accountType, dataSet);
238 aDataSet = ((AccountWithDataSet) a).dataSet;
241 bDataSet = ((AccountWithDataSet) b).dataSet;
458 + accountType.accountType + ", dataSet=" + accountType.dataSet
486 account.name, account.type, accountType.dataSet);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilter.java 50 private static final String KEY_DATA_SET = "filter.dataSet";
55 public final String dataSet;
59 public ContactListFilter(int filterType, String accountType, String accountName, String dataSet,
64 this.dataSet = dataSet;
73 String dataSet, Drawable icon) {
75 accountName, dataSet, icon);
101 return "account: " + accountType + (dataSet != null ? "/" + dataSet : "")
129 if (dataSet != null)
    [all...]
CustomContactListFilterActivity.java 141 new AccountDisplay(resolver, account.name, account.type, account.dataSet);
146 if (account.dataSet != null) {
147 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 == null)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 34 private static final String ARG_DATA_SET = "dataSet";
38 String dataSet) {
43 args.putString(ARG_DATA_SET, dataSet);
62 String dataSet = arguments.getString(ARG_DATA_SET);
66 new AccountWithDataSet(accountName, accountType, dataSet), groupLabel,
  /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 74 * The account type and dataset have been determined.
76 public void onAccountTypeUpdated(String accountTypeString, String dataSet);
282 final String dataSet = cursor.getString(GroupMetaDataLoader.DATA_SET);
283 updateAccountType(accountTypeString, dataSet);
325 private void updateAccountType(final String accountTypeString, final String dataSet) {
331 mListener.onAccountTypeUpdated(accountTypeString, dataSet);
337 manager.getAccountType(accountTypeString, dataSet);
355 accountTypeString, dataSet);
GroupBrowseListAdapter.java 122 String dataSet = mCursor.getString(GroupListLoader.DATA_SET);
139 Objects.equal(dataSet, previousGroupDataSet)) {
144 return new GroupListItem(accountName, accountType, dataSet, groupId, title,
  /packages/apps/Contacts/tests/src/com/android/contacts/editor/
ContactEditorUtilsTest.java 52 "a", TYPE1.accountType, TYPE1.dataSet);
54 "b", TYPE1.accountType, TYPE1.dataSet);
57 "a", TYPE2.accountType, TYPE2.dataSet);
59 "a", TYPE2EX.accountType, TYPE2EX.dataSet);
62 "c", TYPE3.accountType, TYPE3.dataSet);
304 public MockAccountType(String accountType, String dataSet, boolean areContactsWritable) {
306 this.dataSet = dataSet;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 29 public AccountWithDataSet(String accountName, String accountType, String dataSet) {
32 mDataSet = dataSet;
68 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet="
DataRowHandlerForGroupMembership.java 200 String dataSet = c.getString(RawContactsQuery.DATA_SET);
203 accountName, accountType, dataSet);
228 && Objects.equal(entry.dataSet, accountWithDataSet.getDataSet())) {
236 entry.dataSet = accountWithDataSet.getDataSet();
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
AccountTypeManagerTest.java 127 return new AccountWithDataSet(name, type.accountType, type.dataSet);
174 public MockAccountType(String type, String dataSet, String inviteContactActivityClassName) {
176 this.dataSet = dataSet;
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockAccountTypeManager.java 49 && 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/Contacts/src/com/android/contacts/util/
StreamItemEntry.java 54 String accountType, String accountName, String dataSet, String resPackage,
62 mDataSet = dataSet;
AccountSelectionUtil.java 123 account.type, account.dataSet);
171 importIntent.putExtra("data_set", account.dataSet);
183 importIntent.putExtra("data_set", account.dataSet);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
SelectAccountActivity.java 71 intent.putExtra(DATA_SET, account.dataSet);
90 intent.putExtra(DATA_SET, account.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]);

Completed in 1948 milliseconds

1 2 3