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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DBluetoothDeviceFilter.java65 * @param filterType a constant from BluetoothDevicePicker
68 public 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");
/frameworks/base/core/java/android/net/
H A DNetworkScoreManager.java381 * @param filterType the {@link CacheUpdateFilter} to apply
388 @CacheUpdateFilter int filterType) {
390 mService.registerNetworkScoreCache(networkType, scoreCache, filterType);
387 registerNetworkScoreCache(int networkType, INetworkScoreCache scoreCache, @CacheUpdateFilter int filterType) argument
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java46 void onSetFilter(int filterType, String str, int time); argument
50 int filterType; field in class:TimeZoneFilterTypeAdapter.ViewHolder
129 vh.filterType = filter.type;
152 mListener.onSetFilter(vh.filterType, vh.str, vh.time);
404 int filterType;
406 filterType = FILTER_TYPE_NONE;
408 filterType = FILTER_TYPE_EMPTY;
410 mListener.onSetFilter(filterType, null, 0);
H A DTimeZoneResultAdapter.java120 public void onSetFilter(int filterType, String str, int time) { argument
122 Log.d(TAG, "onSetFilter: " + filterType + " [" + str + "] " + time);
125 mLastFilterType = filterType;
132 switch (filterType) {
/frameworks/av/cmds/stagefright/
H A Dmediafilter.cpp318 FilterType filterType) {
395 switch (filterType) {
671 FilterType filterType = FILTERTYPE_ZERO; local
678 filterType = FILTERTYPE_INTRINSIC_BLUR;
683 filterType = FILTERTYPE_RS_ARGB_TO_RGBA;
688 filterType = FILTERTYPE_RS_NIGHT_VISION;
693 filterType = FILTERTYPE_RS_SATURATION;
698 filterType = FILTERTYPE_SATURATION;
703 filterType = FILTERTYPE_ZERO;
776 decode(looper, argv[0], surface, renderSurface, useTimestamp, filterType);
312 decode( const sp<ALooper> &looper, const char *path, const sp<Surface> &surface, bool renderSurface, bool useTimestamp, FilterType filterType) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DNetworkScoreService.java458 int filterType = NetworkScoreManager.CACHE_FILTER_NONE;
460 filterType = (Integer) cookie;
465 filterScores(mScoredNetworkList, filterType);
480 int filterType) {
481 switch (filterType) {
500 Log.w(TAG, "Unknown filter type: " + filterType);
766 int filterType) {
776 if (!callbackList.register(scoreCache, filterType)) {
479 filterScores(List<ScoredNetwork> scoredNetworkList, int filterType) argument
764 registerNetworkScoreCache(int networkType, INetworkScoreCache scoreCache, int filterType) argument

Completed in 331 milliseconds