Searched defs:Filter (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDeviceFilter.java27 * Filter object that returns whether or not the BluetoothDevice
35 interface Filter { interface in class:BluetoothDeviceFilter
40 static final Filter ALL_FILTER = new AllFilter();
43 static final Filter BONDED_DEVICE_FILTER = new BondedDeviceFilter();
46 static final Filter UNBONDED_DEVICE_FILTER = new UnbondedDeviceFilter();
49 private static final Filter[] FILTERS = {
62 * Returns the singleton {@link Filter} object for the specified type,
66 * @return a singleton object implementing the {@link Filter} interface.
68 static Filter getFilter(int filterType) {
77 /** Filter tha
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlDocument.java891 * Filter is like Visitor, except it implies that the nodes may be changed,
893 * over. A Filter can behave just like a Visitor if it merely returns the
900 public static interface Filter { interface in class:HtmlDocument
921 * Like Filter, except each node may be replaced by multiple nodes. Also,
946 * Converts a normal {@link Filter} into a {@link MultiplexFilter}.
950 private final Filter filter;
952 public MultiplexFilterAdapter(Filter filter) {
989 * Like Filter, except each node may be replaced by multiple nodes. Also,
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java892 * Filter is like Visitor, except it implies that the nodes may be changed,
894 * over. A Filter can behave just like a Visitor if it merely returns the
901 public static interface Filter { interface in class:HtmlDocument
922 * Like Filter, except each node may be replaced by multiple nodes. Also,
947 * Converts a normal {@link Filter} into a {@link MultiplexFilter}.
951 private final Filter filter;
953 public MultiplexFilterAdapter(Filter filter) {
990 * Like Filter, except each node may be replaced by multiple nodes. Also,

Completed in 489 milliseconds