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

1 2 3 4

  /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();
166 account.dataSet, hasGroups);
256 String accountType, String dataSet, boolean accountHasGroups) {
260 if (dataSet != null) {
261 settingsUri.appendQueryParameter(Settings.DATA_SET, dataSet);
271 values.put(Settings.DATA_SET, dataSet);
380 String dataSet = this.getAsString(Settings.DATA_SET);
384 if (dataSet == null)
    [all...]
  /external/chromium_org/tools/perf/utils/results_viewer/src/
results_viewer.js 18 var dataSet = createViewerDataset(e.target.result);
21 viewer.dataSet = dataSet;
37 var dataset = [];
48 dataset.push(newRow);
50 return dataset;
main.js 44 * Generates the YUI column definition for the given dataset.
45 * @param {String[][]} dataSet the dataset that will be displayed.
48 function createYUIColumnDefinitions(dataSet) {
49 var header = dataSet[0];
50 var firstRow = dataSet[1];
64 * Generates the YUI data source for the given dataset.
65 * @param {String[][]} dataSet the dataset that will be displayed.
67 * derived from the dataset
    [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/60xx/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/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 78 * The account type and dataset have been determined.
80 public void onAccountTypeUpdated(String accountTypeString, String dataSet);
310 final String dataSet = cursor.getString(GroupMetaDataLoader.DATA_SET);
311 updateAccountType(accountTypeString, dataSet);
361 private void updateAccountType(final String accountTypeString, final String dataSet) {
364 manager.getAccountType(accountTypeString, dataSet);
372 mListener.onAccountTypeUpdated(accountTypeString, dataSet);
392 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 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,
  /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)
  /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/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/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 121 String dataSet = rawContact.dataSet;
125 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/ContactsCommon/src/com/android/contacts/common/model/
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);
299 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;
  /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 6333 milliseconds

1 2 3 4