Searched defs:filterType (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDeviceFilter.java65 * @param filterType a constant from BluetoothDevicePicker
68 static Filter getFilter(int filterType) { argument
69 if (filterType >= 0 && filterType < FILTERS.length) {
70 return FILTERS[filterType];
72 Log.w(TAG, "Invalid filter type " + filterType + " for device picker");
H A DDeviceListPreferenceFragment.java69 final void setFilter(int filterType) { argument
70 mFilter = BluetoothDeviceFilter.getFilter(filterType);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListFilter.java54 public final int filterType; field in class:ContactListFilter
61 public ContactListFilter(int filterType, String accountType, String accountName, String dataSet, argument
63 this.filterType = filterType;
70 public static ContactListFilter createFilterWithType(int filterType) { argument
71 return new ContactListFilter(filterType, null, null, null, null);
84 return filterType == FILTER_TYPE_ACCOUNT;
89 switch (filterType) {
121 return filterType - another.filterType;
286 filterTypeToString(int filterType) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DFilterUtils.java44 // T = newFilterPath(S, filterType);
49 // T = switchFilterPath(S, filterType);
53 // filterType are already used, they cannot not be used as parameter for these
176 public static String newFilterPath(String base, int filterType) { argument
178 switch (filterType) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilter.java40 private byte filterType = TYPE_NORMAL; field in class:ImageFilter
43 return filterType;
47 filterType = type;
55 filter.setFilterType(filterType);
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogFragment.java394 private void updateFilterTypeAndHeader(int filterType) { argument
395 mCallTypeFilter = filterType;
397 switch (filterType) {

Completed in 108 milliseconds