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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/widget/
Filterable.java 21 * constrained by a filter. Filterable classes are usually
24 * @see android.widget.Filter
28 * <p>Returns a filter that can be used to constrain data with a filtering
34 * @return a filter used to constrain data
36 Filter getFilter();
  /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/chromium_org/net/filter/
filter_unittest.cc 5 #include "net/filter/filter.h"
6 #include "net/filter/mock_filter_context.h"
16 EXPECT_EQ(Filter::FILTER_TYPE_DEFLATE,
17 Filter::ConvertEncodingToType("deflate"));
18 EXPECT_EQ(Filter::FILTER_TYPE_DEFLATE,
19 Filter::ConvertEncodingToType("deflAte"));
20 EXPECT_EQ(Filter::FILTER_TYPE_GZIP,
21 Filter::ConvertEncodingToType("gzip"));
22 EXPECT_EQ(Filter::FILTER_TYPE_GZIP
    [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...]
filter.cc 5 #include "net/filter/filter.h"
12 #include "net/filter/gzip_filter.h"
13 #include "net/filter/sdch_filter.h"
19 // Filter types (using canonical lower case only):
44 Filter::~Filter() {}
47 Filter* Filter::Factory(const std::vector<FilterType>& filter_types,
52 Filter* filter_list = NULL; // Linked list of filters
    [all...]
gzip_filter.cc 5 #include "net/filter/gzip_filter.h"
8 #include "net/filter/gzip_header.h"
28 bool GZipFilter::InitDecoding(Filter::FilterType filter_type) {
40 case Filter::FILTER_TYPE_DEFLATE: {
46 case Filter::FILTER_TYPE_GZIP_HELPING_SDCH:
49 case Filter::FILTER_TYPE_GZIP: {
67 Filter::FilterStatus GZipFilter::ReadFilteredData(char* dest_buffer,
70 return Filter::FILTER_ERROR;
81 return Filter::FILTER_ERROR;
83 Filter::FilterStatus status
    [all...]
sdch_filter_unittest.cc 14 #include "net/filter/mock_filter_context.h"
15 #include "net/filter/sdch_filter.h"
33 // several sdch buffers worth of data to satisfy the sdch filter. See detailed
105 // Provide a generic helper function for trying to filter data.
106 // This function repeatedly calls the filter to process data, until the entire
107 // source is consumed. The return value from the filter is appended to output.
110 // This function provides data to the filter in blocks of no-more-than the
111 // specified input_block_length. It allows the filter to fill no more than
117 Filter* filter, std::string* output)
    [all...]
sdch_filter.h 11 // SdchFilter is also a subclass of Filter. See the latter's header file
12 // filter.h for sample usage.
22 #include "net/filter/filter.h"
30 class NET_EXPORT_PRIVATE SdchFilter : public Filter {
34 // Initializes filter decoding mode and internal control blocks.
35 bool InitDecoding(Filter::FilterType filter_type);
37 // Decode the pre-filter data and writes the output into |dest_buffer|
38 // The function returns FilterStatus. See filter.h for its description.
57 // Only to be instantiated by Filter::Factory
    [all...]
  /external/chromium_org/webkit/browser/quota/
storage_observer.h 20 struct WEBKIT_STORAGE_BROWSER_EXPORT Filter {
28 Filter();
29 Filter(StorageType storage_type, const GURL& origin);
30 bool operator==(const Filter& other) const;
35 Filter filter; member in struct:quota::StorageObserver::MonitorParams
50 MonitorParams(const Filter& filter,
57 Filter filter; member in struct:quota::StorageObserver::Event
    [all...]
storage_observer.cc 9 // StorageObserver::Filter
11 StorageObserver::Filter::Filter()
15 StorageObserver::Filter::Filter(StorageType storage_type, const GURL& origin)
19 bool StorageObserver::Filter::operator==(const Filter& other) const {
35 : filter(storage_type, origin),
41 const Filter& filter,
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFilter.java 3 import android.widget.Filter;
7 @Implements(Filter.class)
  /external/junit/src/org/junit/runner/manipulation/
Filterable.java 4 * Runners that allow filtering should implement this interface. Implement {@link #filter(Filter)}
5 * to remove tests that don't pass the filter.
10 * Remove tests that don't pass the parameter <code>filter</code>.
11 * @param filter the {@link Filter} to apply
14 void filter(Filter filter) throws NoTestsRemainException; method in interface:Filterable
Filter.java 9 * If you want to filter the tests to be run, extend <code>Filter</code> and apply an instance of
10 * your filter to the {@link org.junit.runner.Request} before running it (see
11 * {@link org.junit.runner.JUnitCore#run(Request)}. Alternatively, apply a <code>Filter</code> to
15 public abstract class Filter {
17 * A null <code>Filter</code> that passes all tests through.
19 public static Filter ALL= new Filter() {
36 public Filter intersect(Filter second)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleScheduler.java 20 import android.filterfw.core.Filter;
37 public Filter scheduleNextNode() {
38 for (Filter filter : getGraph().getFilters()) {
39 if (filter.canProcess())
40 return filter;
RandomScheduler.java 23 import android.filterfw.core.Filter;
42 public Filter scheduleNextNode() {
43 Vector<Filter> candidates = new Vector<Filter>();
44 for (Filter filter : getGraph().getFilters()) {
45 if (filter.canProcess())
46 candidates.add(filter);
Scheduler.java 20 import android.filterfw.core.Filter;
41 abstract Filter scheduleNextNode();
RoundRobinScheduler.java 22 import android.filterfw.core.Filter;
42 public Filter scheduleNextNode() {
43 Set<Filter> all_filters = getGraph().getFilters();
46 Filter first = null;
48 for (Filter filter : all_filters) {
49 if (filter.canProcess()) {
52 // store the first available filter
53 first = filter;
57 // return the next available filter since las
    [all...]
FilterGraph.java 40 private HashSet<Filter> mFilters = new HashSet<Filter>();
41 private HashMap<String, Filter> mNameMap = new HashMap<String, Filter>();
65 public boolean addFilter(Filter filter) {
66 if (!containsFilter(filter)) {
67 mFilters.add(filter);
68 mNameMap.put(filter.getName(), filter); local
198 Filter filter = filterStack.pop(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.h 41 class Filter;
53 static PassRefPtr<FilterEffect> build(Filter*, RenderObject* renderer, FilterEffect* previousEffect, const ReferenceFilterOperation*);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMerge.h 26 #include "platform/graphics/filters/Filter.h"
34 static PassRefPtr<FEMerge> create(Filter*);
41 FEMerge(Filter*);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
NullFilter.java 20 import android.filterfw.core.Filter;
26 public class NullFilter extends Filter {
  /external/deqp/framework/randomshaders/
rsgVariableManager.hpp 118 template <typename Item, typename Iterator, class Filter>
122 FilteredIterator (Iterator iter, Iterator end, Filter filter)
125 , m_filter (filter)
170 static Iterator findNext (Filter filter, Iterator iter, Iterator end)
174 while (iter != end && !filter(*iter));
180 Filter m_filter;
183 template <class Filter>
184 class ValueEntryIterator : public FilteredIterator<const ValueEntry*, std::vector<const ValueEntry*>::const_iterator, Filter>
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/log_private/
filter_handler.h 14 // This class contains multiple filtering methods to filter log entries
18 explicit FilterHandler(const api::log_private::Filter& filter);
25 // Returns true if the timestamp is within the time range of the filter.
28 // Returns true if the log is from specified source in the filter.
31 // Returns true if the log level is specified in the filter.
34 // Returns true if the process name is specified in the filter.
37 const api::log_private::Filter* GetFilter() const { return &filter_; }
40 api::log_private::Filter filter_;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDistantLightElement.h 34 virtual PassRefPtr<LightSource> lightSource(Filter*) const OVERRIDE;
SVGFEMergeElement.h 36 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) OVERRIDE;

Completed in 813 milliseconds

1 2 3 4 5 6 7 8 91011>>