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

1 2 3 4 5 6 7

  /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 51 public final String dataSet;
59 public AccountWithDataSet(String name, String type, String dataSet) {
62 this.dataSet = emptyToNull(dataSet);
63 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet);
73 this.dataSet = in.readString();
74 mAccountTypeWithDataSet = AccountTypeWithDataSet.get(type, dataSet);
95 dest.writeString(dataSet);
122 if (TextUtils.isEmpty(dataSet)) {
127 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...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactDeltaComparator.java 92 if (type1.dataSet != null && type2.dataSet == null) {
94 } else if (type1.dataSet == null && type2.dataSet != null) {
98 if (type1.dataSet != null && type2.dataSet != null) {
99 value = type1.dataSet.compareTo(type2.dataSet);
AggregationSuggestionView.java 125 String dataSet = rawContact.dataSet;
129 AccountType type = accountTypes.getAccountType(accountType, dataSet);
  /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="
MetadataEntryParser.java 101 String dataSet) {
105 mDataSet = dataSet;
255 String dataSet = null;
258 dataSet = PLUS_DATA_SET_TYPE;
261 dataSet = uniqueContactJSON.getString(CUSTOM_DATA_SET);
270 backupId, accountType, accountName, 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 79 * The account type and dataset have been determined.
81 public void onAccountTypeUpdated(String accountTypeString, String dataSet);
311 final String dataSet = cursor.getString(GroupMetaDataLoader.DATA_SET);
312 updateAccountType(accountTypeString, dataSet);
362 private void updateAccountType(final String accountTypeString, final String dataSet) {
365 manager.getAccountType(accountTypeString, dataSet);
373 mListener.onAccountTypeUpdated(accountTypeString, dataSet);
393 accountTypeString, dataSet);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
GroupMetaData.java 31 public GroupMetaData(String accountName, String accountType, String dataSet, long groupId,
35 this.mDataSet = dataSet;
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 35 private static final String ARG_DATA_SET = "dataSet";
47 String dataSet, OnGroupCreatedListener listener) {
52 args.putString(ARG_DATA_SET, dataSet);
85 String dataSet = arguments.getString(ARG_DATA_SET);
96 new AccountWithDataSet(accountName, accountType, dataSet), groupLabel,
  /developers/build/prebuilts/gradle/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java 61 * Initialize the dataset of the Adapter.
63 * @param dataSet String[] containing the data to populate views to be used by RecyclerView.
65 public CustomAdapter(String[] dataSet) {
66 mDataSet = dataSet;
87 // Get element from your dataset at this position and replace the contents of the view
93 // Return the size of your dataset (invoked by the layout manager)
  /developers/samples/android/ui/views/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java 61 * Initialize the dataset of the Adapter.
63 * @param dataSet String[] containing the data to populate views to be used by RecyclerView.
65 public CustomAdapter(String[] dataSet) {
66 mDataSet = dataSet;
87 // Get element from your dataset at this position and replace the contents of the view
93 // Return the size of your dataset (invoked by the layout manager)
  /development/samples/browseable/RecyclerView/src/com.example.android.recyclerview/
CustomAdapter.java 61 * Initialize the dataset of the Adapter.
63 * @param dataSet String[] containing the data to populate views to be used by RecyclerView.
65 public CustomAdapter(String[] dataSet) {
66 mDataSet = dataSet;
87 // Get element from your dataset at this position and replace the contents of the view
93 // Return the size of your dataset (invoked by the layout manager)
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/
RvArrayAdapter.java 41 public RvArrayAdapter(String[] dataSet) {
42 mDataSet = dataSet;
  /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);
312 public MockAccountType(String accountType, String dataSet, boolean areContactsWritable) {
314 this.dataSet = 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/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockAccountTypeManager.java 56 && Objects.equal(accountTypeWithDataSet.dataSet, type.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);
  /external/dng_sdk/source/
dng_iptc.h 83 enum DataSet
162 uint8 dataSet,
dng_iptc.cpp 258 uint8 dataSet = stream.Get_uint8 ();
266 switch (dataSet)
344 uint8 dataSet = stream.Get_uint8 ();
354 switch ((DataSet) dataSet)
629 uint8 dataSet,
640 stream.Put_uint8 (dataSet);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java 125 public final AccountType getAccountType(String accountType, String dataSet) {
126 return getAccountType(AccountTypeWithDataSet.get(accountType, dataSet));
153 * {@link AccountType#accountType}, {@link AccountType#dataSet}, and {@link DataKind#mimeType}.
255 && Objects.equal(a.dataSet, b.dataSet)) {
272 if (a.dataSet != null) {
273 return b.dataSet == null ? 1 : a.dataSet.compareTo(b.dataSet);
468 + accountType.accountType + ", dataSet=" + accountType.dataSe
    [all...]
RawContact.java 271 private void setAccount(String accountName, String accountType, String dataSet) {
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);
301 accountWithDataSet.dataSet);

Completed in 439 milliseconds

1 2 3 4 5 6 7