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

/frameworks/av/include/media/
H A DMetadata.h50 typedef SortedVector<Type> Filter; typedef in class:android::media::Metadata
/frameworks/base/core/java/android/widget/
H A DFilter.java32 * {@link #filter(CharSequence, android.widget.Filter.FilterListener)} are
39 public abstract class Filter { class
40 private static final String LOG_TAG = "Filter";
42 private static final String THREAD_NAME = "Filter";
56 public Filter() { method in class:Filter
81 * @see #filter(CharSequence, android.widget.Filter.FilterListener)
99 * @see #publishResults(CharSequence, android.widget.Filter.FilterResults)
131 * must be returned as a {@link android.widget.Filter.FilterResults} that
134 * android.widget.Filter.FilterResults)}.</p>
142 * @see #filter(CharSequence, android.widget.Filter
[all...]
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java76 private Filter mFilter;
98 public interface Filter { interface in class:LayoutInflater
317 * @return The {@link Filter} currently used by this LayoutInflater to restrict the set of Views
320 public Filter getFilter() {
325 * Sets the {@link Filter} to by this LayoutInflater. If a view is attempted to be inflated
326 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
330 * @param filter The Filter which restricts the set of Views that are allowed to be inflated.
333 public void setFilter(Filter filter) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java42 public abstract class Filter { class
71 private static final String TAG = "Filter";
73 public Filter(String name) { method in class:Filter
94 // Then make sure it's a subclass of Filter.
96 filterClass.asSubclass(Filter.class);
226 + "' of " + this + " before Filter has been initialized!");
239 + "' of " + this + " before Filter has been initialized!");
316 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + port);
332 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + port);
350 if (mLogVerbose) Log.v(TAG, "Filter "
[all...]

Completed in 4294 milliseconds