HomeSort by relevance Sort by last modified time
    Searched refs:filterType (Results 1 - 18 of 18) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilter.java 52 public final int filterType;
59 public ContactListFilter(int filterType, String accountType, String accountName, String dataSet,
61 this.filterType = filterType;
68 public static ContactListFilter createFilterWithType(int filterType) {
69 return new ContactListFilter(filterType, null, null, null, null);
82 return filterType == FILTER_TYPE_ACCOUNT;
87 switch (filterType) {
119 return filterType - another.filterType;
    [all...]
DefaultContactListAdapter.java 110 if (filter != null && filter.filterType == ContactListFilter.FILTER_TYPE_SINGLE_CONTACT) {
125 && filter.filterType != ContactListFilter.FILTER_TYPE_CUSTOM
126 && filter.filterType != ContactListFilter.FILTER_TYPE_SINGLE_CONTACT) {
148 switch (filter.filterType) {
DefaultContactBrowseListFragment.java 173 int filterType = filter != null ? filter.filterType
175 switch (filterType) {
ContactListFilterController.java 146 switch (mFilter.filterType) {
ContactListFilterView.java 80 switch (mFilter.filterType) {
ContactBrowseListFragment.java 411 || mFilter.filterType == ContactListFilter.FILTER_TYPE_SINGLE_CONTACT) {
494 && mFilter.filterType == ContactListFilter.FILTER_TYPE_SINGLE_CONTACT) {
502 && mFilter.filterType == ContactListFilter.FILTER_TYPE_SINGLE_CONTACT) {
PhoneNumberListAdapter.java 152 switch (filter.filterType) {
181 "(type: " + filter.filterType + ", toString: " + filter + ")" +
AccountFilterActivity.java 166 if (filter.filterType == ContactListFilter.FILTER_TYPE_CUSTOM) {
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountFilterUtil.java 74 if (filter.filterType == ContactListFilter.FILTER_TYPE_ALL_ACCOUNTS) {
79 } else if (filter.filterType == ContactListFilter.FILTER_TYPE_ACCOUNT) {
83 } else if (filter.filterType == ContactListFilter.FILTER_TYPE_CUSTOM) {
87 Log.w(TAG, "Filter type \"" + filter.filterType + "\" isn't expected.");
90 if (filter.filterType == ContactListFilter.FILTER_TYPE_ALL_ACCOUNTS) {
95 } else if (filter.filterType == ContactListFilter.FILTER_TYPE_ACCOUNT) {
99 } else if (filter.filterType == ContactListFilter.FILTER_TYPE_CUSTOM) {
102 } else if (filter.filterType == ContactListFilter.FILTER_TYPE_SINGLE_CONTACT) {
106 Log.w(TAG, "Filter type \"" + filter.filterType + "\" isn't expected.");
158 if (filter.filterType == ContactListFilter.FILTER_TYPE_CUSTOM)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDeviceFilter.java 65 * @param filterType a constant from BluetoothDevicePicker
68 static Filter getFilter(int filterType) {
69 if (filterType >= 0 && filterType < FILTERS.length) {
70 return FILTERS[filterType];
72 Log.w(TAG, "Invalid filter type " + filterType + " for device picker");
DeviceListPreferenceFragment.java 69 final void setFilter(int filterType) {
70 mFilter = BluetoothDeviceFilter.getFilter(filterType);
  /external/webkit/Source/WebCore/svg/
SVGFEColorMatrixElement.cpp 138 const ColorMatrixType filterType(static_cast<ColorMatrixType>(type()));
142 switch (filterType) {
160 if ((filterType == FECOLORMATRIX_TYPE_MATRIX && size != 20)
161 || (filterType == FECOLORMATRIX_TYPE_HUEROTATE && size != 1)
162 || (filterType == FECOLORMATRIX_TYPE_SATURATE && (size != 1
167 RefPtr<FilterEffect> effect = FEColorMatrix::create(filter, filterType, filterValues);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
FilterUtils.java 44 // T = newFilterPath(S, filterType);
49 // T = switchFilterPath(S, filterType);
53 // filterType are already used, they cannot not be used as parameter for these
175 public static String newFilterPath(String base, int filterType) {
177 switch (filterType) {
218 public static String switchFilterPath(String base, int filterType) {
219 return newFilterPath(removeOneFilterFromPath(base), filterType);
AlbumPage.java 250 public void doFilter(int filterType) {
252 String newPath = FilterUtils.switchFilterPath(basePath, filterType);
AlbumSetPage.java 259 public void doFilter(int filterType) {
261 String newPath = FilterUtils.switchFilterPath(basePath, filterType);
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 127 template<ColorMatrixType filterType>
137 switch (filterType) {
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 266 int bitDepth, colorType, interlaceType, compressionType, filterType, channels;
267 png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, &interlaceType, &compressionType, &filterType);
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java     [all...]

Completed in 563 milliseconds