HomeSort by relevance Sort by last modified time
    Searched defs:Filter (Results 1 - 25 of 27) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/logging/
Filter.java 21 * A {@code Filter} provides a mechanism for exercising fine-grained control
24 public interface Filter {
  /external/webkit/WebCore/platform/graphics/filters/
Filter.h 37 class Filter : public RefCounted<Filter> {
39 virtual ~Filter() { }
  /external/webkit/WebCore/xml/
XPathPath.cpp 41 Filter::Filter(Expression* expr, const Vector<Predicate*>& predicates)
49 Filter::~Filter()
55 Value Filter::evaluate() const
181 Path::Path(Filter* filter, LocationPath* path)
182 : m_filter(filter)
185 setIsContextNodeSensitive(filter->isContextNodeSensitive());
186 setIsContextPositionSensitive(filter->isContextPositionSensitive())
    [all...]
XPathPath.h 42 class Filter : public Expression {
44 Filter(Expression*, const Vector<Predicate*>& = Vector<Predicate*>());
45 virtual ~Filter();
77 Path(Filter*, LocationPath*);
85 Filter* m_filter;
  /development/tools/mkstubs/src/com/android/mkstubs/
Filter.java 22 * A "filter" holds the various patterns that MkStubs should accept (include)
32 class Filter {
  /external/chromium/net/base/
filter.cc 5 #include "net/base/filter.h"
16 // Filter types (using canonical lower case only):
39 Filter* Filter::Factory(const std::vector<FilterType>& filter_types,
46 Filter* filter_list = NULL; // Linked list of filters.
57 Filter::FilterType Filter::ConvertEncodingToType(
69 // filter should be disabled in such cases.
76 void Filter::FixupEncodingTypes(
152 // no-op pass through filter if it doesn't get gzip headers where expected
    [all...]
filter.h 5 // Filter performs filtering on data streams. Sample usage:
9 // Filter* filter = Filter::Factory(filter_type, size);
10 // int pre_filter_data_len = filter->stream_buffer_size();
11 // pre_filter_source->read(filter->stream_buffer(), pre_filter_data_len);
13 // filter->FlushStreamBuffer(pre_filter_data_len);
17 // filter->ReadFilteredData(post_filter_buf, &post_filter_data_len);
19 // To filter a data stream, the caller first gets filter's stream_buffer
    [all...]
  /dalvik/hit/src/com/android/hit/
Instance.java 38 public interface Filter {
58 * of the object graph. If non-null, the filter is applied to each
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
  /external/chromium/third_party/icu/public/common/unicode/
uniset.h     [all...]
  /external/icu4c/common/unicode/
uniset.h     [all...]
  /external/v8/test/mjsunit/
json.js 137 function Filter(key, value) {
140 return Filter;
  /external/libpcap/
pcap-pf.c 21 * packet filter subroutines for tcpdump
189 * Short-circuit evaluation: if using BPF filter
193 * Note: the filter code was generated assuming
196 * in the kernel, so we run the filter before
248 * "ps_recv" counts only packets that passed the filter.
254 * passed the filter, and on others it counts packets
255 * that didn't pass the filter....)
257 * "ps_drop" counts packets that passed the kernel filter
263 * the input filter, of course).
267 * "ps_recv" counts only packets that passed the filter
    [all...]
  /frameworks/base/core/java/android/widget/
Filter.java 26 * <p>A filter constrains data with a filtering pattern.</p>
31 * <p>Filtering operations performed by calling {@link #filter(CharSequence)} or
32 * {@link #filter(CharSequence, android.widget.Filter.FilterListener)} are
39 public abstract class Filter {
40 private static final String LOG_TAG = "Filter";
42 private static final String THREAD_NAME = "Filter";
54 * <p>Creates a new asynchronous filter.</p>
56 public Filter() {
79 * @param constraint the constraint used to filter the dat
83 public final void filter(CharSequence constraint) { method in class:Filter
84 filter(constraint, null); method
101 public final void filter(CharSequence constraint, FilterListener listener) { method in class:Filter
    [all...]
  /frameworks/base/include/media/
Metadata.h 50 typedef SortedVector<Type> Filter;
  /frameworks/base/core/java/android/view/
LayoutInflater.java 70 private Filter mFilter;
91 public interface Filter {
241 * @return The {@link Filter} currently used by this LayoutInflater to restrict the set of Views
244 public Filter getFilter() {
249 * Sets the {@link Filter} to by this LayoutInflater. If a view is attempted to be inflated
250 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
251 * throw an {@link InflateException}. This filter will replace any previous filter set on this
254 * @param filter The Filter which restricts the set of Views that are allowed to be inflated
    [all...]
  /frameworks/base/tools/localize/
XLIFFFile.cpp 224 XLIFFFile::Filter(bool (*func)(const string&,const TransUnit&,void*), void* cookie)
  /external/gtest/test/
gtest_unittest.cc 45 || testing::GTEST_FLAG(filter) != "unknown"
112 using testing::GTEST_FLAG(filter);
4439 const char* filter; member in struct:testing::Flags
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 54 /* Some filter constants */
220 // we need to allocate it to one (or many) filter later. This would happen when
221 // we see a method exit that maches a filter, but whose entry we hadn't seen.
269 typedef struct Filter {
277 } Filter;
2725 Filter* filter; local
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 45 || testing::GTEST_FLAG(filter) != "unknown"
128 using testing::GTEST_FLAG(filter);
5323 const char* filter; member in struct:testing::Flags
    [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 730 milliseconds

1 2