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

1 2 3 4

  /external/lzma/CPP/7zip/Compress/
BranchCoder.cpp 14 STDMETHODIMP_(UInt32) CBranchConverter::Filter(Byte *data, UInt32 size)
ByteSwap.cpp 18 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
28 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
33 STDMETHODIMP_(UInt32) CByteSwap2::Filter(Byte *data, UInt32 size)
48 STDMETHODIMP_(UInt32) CByteSwap4::Filter(Byte *data, UInt32 size)
DeltaFilter.cpp 29 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
43 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
53 STDMETHODIMP_(UInt32) CDeltaEncoder::Filter(Byte *data, UInt32 size)
85 STDMETHODIMP_(UInt32) CDeltaDecoder::Filter(Byte *data, UInt32 size)
  /external/chromium_org/storage/browser/quota/
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...]
storage_observer.h 20 struct STORAGE_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:storage::StorageObserver::MonitorParams
50 MonitorParams(const Filter& filter,
57 Filter filter; member in struct:storage::StorageObserver::Event
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfEncryptionCommonDictionary_autogen.cpp 11 SkString SkPdfEncryptionCommonDictionary::Filter(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Filter", "");
20 return get("Filter", "") != NULL;
SkPdfSignatureDictionary_autogen.cpp 23 SkString SkPdfSignatureDictionary::Filter(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Filter", "");
32 return get("Filter", "") != NULL;
  /external/chromium_org/third_party/webrtc/common_audio/
fir_filter_neon.cc 45 void FIRFilterNEON::Filter(const float* in, size_t length, float* out) {
50 // Convolves the input signal |in| with the filter kernel |coefficients_|
fir_filter_sse.cc 45 void FIRFilterSSE2::Filter(const float* in, size_t length, float* out) {
50 // Convolves the input signal |in| with the filter kernel |coefficients_|
fir_filter.cc 28 virtual void Filter(const float* in, size_t length, float* out) OVERRIDE;
45 FIRFilter* filter = NULL; local
49 filter =
54 filter =
57 filter = new FIRFilterC(coefficients, coefficients_length);
62 filter =
67 filter =
70 filter = new FIRFilterC(coefficients, coefficients_length);
74 filter = new FIRFilterC(coefficients, coefficients_length);
77 return filter;
    [all...]
  /external/junit/src/org/junit/runner/manipulation/
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...]
  /external/mockito/src/org/mockito/internal/util/collections/
ListUtil.java 13 public static <T> LinkedList<T> filter(Collection<T> collection, Filter<T> filter) { method in class:ListUtil
16 if (!filter.isOut(t)) {
23 public static interface Filter<T> {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPath.cpp 40 Filter::Filter(PassOwnPtrWillBeRawPtr<Expression> expr, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates)
49 Filter::~Filter()
53 void Filter::trace(Visitor* visitor)
60 Value Filter::evaluate(EvaluationContext& evaluationContext) const
207 Path::Path(Expression* filter, LocationPath* path)
208 : m_filter(adoptPtrWillBeNoop(filter))
211 setIsContextNodeSensitive(filter->isContextNodeSensitive());
212 setIsContextPositionSensitive(filter->isContextPositionSensitive())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
Filter.h 32 class PLATFORM_EXPORT Filter : public RefCounted<Filter> {
34 Filter(const AffineTransform& absoluteTransform)
42 virtual ~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/aac/libAACdec/src/
aacdec_tns.h 118 CFilter Filter[TNS_MAX_WINDOWS][TNS_MAXIMUM_FILTERS];
  /external/chromium_org/base/win/
wrapped_window_proc_unittest.cc 22 // This class implements an exception filter that can be queried about a past
40 // The actual exception filter just records the exception.
41 static int Filter(EXCEPTION_POINTERS* info) {
70 // Before generating the exception we make sure that the filter will see it.
73 base::win::SetWinProcExceptionFilter(TestWrappedExceptionFiter::Filter);
  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter.h 57 // A single filter specification. See GetAllowString() and GetDenyString()
59 struct Filter {
68 Filter(base::string16 match_str, Type type)
74 void SetFilters(const std::vector<Filter>& filters);
85 // is an allow-empty, allow or deny filter. Example:
142 std::vector<Filter> filters_;
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSProject.py 34 class Filter(object):
35 """Visual Studio filter - that is, a virtual folder."""
41 name: Filter (folder) name.
42 contents: List of filenames and/or Filter objects contained.
139 files: A list of Filter objects and/or relative paths to files.
141 Will call itself recursively, if the files list contains Filter objects.
144 if isinstance(f, Filter):
145 node = ['Filter', {'Name': f.name}]
156 files: A list of Filter objects and/or relative paths to files.
158 This makes a copy of the file/filter tree at the time of this call. If yo
    [all...]
  /external/chromium_org/net/filter/
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...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
commands.js 398 * Filter command.
401 * @param {function(ImageData,ImageData,number,number)} filter Filter function.
406 Command.Filter = function(name, filter, message) {
408 this.filter_ = filter;
412 Command.Filter.prototype = { __proto__: Command.prototype };
415 Command.Filter.prototype.execute = function(
450 filter.applyByStrips(result, srcCanvas, this.filter_,
  /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_org/cc/animation/
animation_curve.h 29 enum CurveType { Color, Float, Transform, Filter, ScrollOffset };
  /external/chromium_org/third_party/icu/source/common/unicode/
uniset.h     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 50 int Filter(FilterState* hpf, int16_t* data, int length) {
126 err = Filter(my_handle,

Completed in 1434 milliseconds

1 2 3 4