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

1 2 3 4 5 6 7 8 91011>>

  /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
  /external/proguard/src/proguard/
ClassPathEntry.java 39 private List filter; field in class:ClassPathEntry
98 return filter;
101 public void setFilter(List filter)
103 this.filter = filter == null || filter.size() == 0 ? null : filter;
112 public void setJarFilter(List filter)
114 this.jarFilter = filter == null || filter.size() == 0 ? null : filter
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSNodeIteratorCustom.cpp 36 if (NodeFilter* filter = m_impl->filter())
37 markStack.addOpaqueRoot(filter);
JSTreeWalkerCustom.cpp 36 if (NodeFilter* filter = m_impl->filter())
37 markStack.addOpaqueRoot(filter);
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
NotFileFilter.java 23 * This filter produces a logical NOT of the filters specified.
32 /** The filter */
33 private final IOFileFilter filter; field in class:NotFileFilter
36 * Constructs a new file filter that NOTs the result of another filters.
38 * @param filter the filter, must not be null
39 * @throws IllegalArgumentException if the filter is null
41 public NotFileFilter(IOFileFilter filter) {
42 if (filter == null) {
43 throw new IllegalArgumentException("The filter must not be null");
    [all...]
FileFilterUtils.java 26 * file filter implementations in this package so you don't have to import
47 * Returns a filter that returns true if the filename starts with the specified text.
50 * @return a prefix checking filter
57 * Returns a filter that returns true if the filename ends with the specified text.
60 * @return a suffix checking filter
67 * Returns a filter that returns true if the filename matches the specified text.
70 * @return a name checking filter
77 * Returns a filter that checks if the file is a directory.
79 * @return file filter that accepts only directories and not files
86 * Returns a filter that checks if the file is a file (and not a directory).
    [all...]
DelegateFileFilter.java 34 /** The Filename filter */
36 /** The File filter */
40 * Constructs a delegate file filter around an existing FilenameFilter.
42 * @param filter the filter to decorate
44 public DelegateFileFilter(FilenameFilter filter) {
45 if (filter == null) {
48 this.filenameFilter = filter;
53 * Constructs a delegate file filter around an existing FileFilter.
55 * @param filter the filter to decorate
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
SourceGraphic.cpp 25 #include "Filter.h"
35 PassRefPtr<SourceGraphic> SourceGraphic::create(Filter* filter)
37 return adoptRef(new SourceGraphic(filter));
48 Filter* filter = this->filter(); local
49 FloatRect paintRect = filter->sourceImageRect();
50 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height())
59 Filter* filter = this->filter(); local
    [all...]
SourceAlpha.cpp 26 #include "Filter.h"
36 PassRefPtr<SourceAlpha> SourceAlpha::create(Filter* filter)
38 return adoptRef(new SourceAlpha(filter));
49 Filter* filter = this->filter(); local
50 FloatRect paintRect = filter->sourceImageRect();
51 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height())
60 Filter* filter = this->filter(); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
bloom_filter.h 26 static inline void setInFilter(uint8_t *filter, const int position) {
28 filter[bucket >> 3] |= (1 << (bucket & 0x7));
31 static inline bool isInFilter(const uint8_t *filter, const int position) {
33 return filter[bucket >> 3] & (1 << (bucket & 0x7));
  /external/jmonkeyengine/engine/src/test/jme3test/post/
SSAOUI.java 47 SSAOFilter filter; field in class:SSAOUI
49 public SSAOUI(InputManager inputManager, SSAOFilter filter) {
50 this.filter = filter;
82 filter.setEnabled(!filter.isEnabled());
83 // filter.setUseAo(!filter.isUseAo());
84 System.out.println("use AO : " + filter.isEnabled());
87 filter.setUseOnlyAo(!filter.isUseOnlyAo())
    [all...]
BloomUI.java 46 public BloomUI(InputManager inputManager, final BloomFilter filter) {
69 filter.setBlurScale(filter.getBlurScale() + 0.01f);
70 System.out.println("blurScale : " + filter.getBlurScale());
73 filter.setBlurScale(filter.getBlurScale() - 0.01f);
74 System.out.println("blurScale : " + filter.getBlurScale());
77 filter.setExposurePower(filter.getExposurePower() + 0.01f);
78 System.out.println("exposurePower : " + filter.getExposurePower())
    [all...]
LightScatteringUI.java 47 private LightScatteringFilter filter; field in class:LightScatteringUI
49 filter=proc;
79 filter.setNbSamples(filter.getNbSamples()+1);
80 System.out.println("Nb Samples : "+filter.getNbSamples());
83 filter.setNbSamples(filter.getNbSamples()-1);
84 System.out.println("Nb Samples : "+filter.getNbSamples());
87 System.out.println("lightScatteringFilter.setNbSamples("+filter.getNbSamples()+");");
88 System.out.println("lightScatteringFilter.setBlurStart("+filter.getBlurStart()+"f);")
    [all...]
  /external/proguard/src/proguard/ant/
FilterElement.java 30 * This DataType represents a name filter in Ant.
36 private String filter; field in class:FilterElement
40 * Adds the contents of this element to the given name filter.
41 * @param filter the list of attributes to be extended.
42 * @param internal specifies whether the filter string should be converted
45 public void appendTo(List filter, boolean internal)
53 String filterString = filterElement.filter;
57 // Clear the filter to keep all names.
58 filter.clear();
67 // Append the filter
    [all...]
  /external/llvm/projects/
Makefile 15 DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
18 DIRS := $(filter-out compiler-rt,$(DIRS))
21 DIRS := $(filter-out libcxx,$(DIRS))
25 DIRS := $(filter-out sample, $(DIRS))
  /external/webkit/Source/WebCore/bindings/objc/
ObjCNodeFilterCondition.h 42 static PassRefPtr<ObjCNodeFilterCondition> create(id <DOMNodeFilter> filter)
44 return adoptRef(new ObjCNodeFilterCondition(filter));
50 ObjCNodeFilterCondition(id <DOMNodeFilter> filter)
51 : m_filter(filter)
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceFilterPrimitive.h 56 RenderObject* filter = parent(); local
57 if (!filter || !filter->isSVGResourceFilter())
59 static_cast<RenderSVGResourceFilter*>(filter)->primitiveAttributeChanged(this, attribute);
  /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;
OneShotScheduler.java 20 import android.filterfw.core.Filter;
29 * filters will be scheduled, and possibly repeatedly, until there is no filter
53 public Filter scheduleNextNode() {
54 Filter first = null;
55 // return the first filter that is not scheduled before.
57 Filter filter = super.scheduleNextNode(); local
58 if (filter == null) {
62 if (!scheduled.containsKey(filter.getName())) {
63 if (filter.getNumberOfConnectedInputs() == 0
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
PatternFilenameFilterTest.java 43 FilenameFilter filter = new PatternFilenameFilter("a+"); local
44 assertTrue(filter.accept(dir, "a"));
45 assertTrue(filter.accept(dir, "aaaa"));
46 assertFalse(filter.accept(dir, "b"));
49 assertTrue(filter.accept(null, "a"));
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherApplication.java 54 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED); local
55 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
56 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
57 filter.addDataScheme("package");
58 registerReceiver(mModel, filter);
59 filter = new IntentFilter();
60 filter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
61 filter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
62 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
63 filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED)
    [all...]
  /external/icu4c/layout/
SingleSubstitutionSubtables.h 25 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
32 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
40 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
IterativeFilter.java 30 package com.jme3.terrain.noise.filter;
36 import com.jme3.terrain.noise.Filter;
42 private List<Filter> preIterateFilters = new ArrayList<Filter>();
43 private List<Filter> postIterateFilters = new ArrayList<Filter>();
44 private Filter filter; field in class:IterativeFilter
51 for (Filter f : this.preIterateFilters) {
54 margin = this.filter.getMargin(size, margin);
84 public FloatBuffer filter(float sx, float sy, float base, FloatBuffer data, int size) { method in class:IterativeFilter
    [all...]
  /external/llvm/runtime/
Makefile 20 PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
23 ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
24 PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
  /external/webkit/Source/WebCore/bindings/v8/
V8NodeFilterCondition.h 47 static PassRefPtr<V8NodeFilterCondition> create(v8::Handle<v8::Value> filter)
49 return adoptRef(new V8NodeFilterCondition(filter));
57 explicit V8NodeFilterCondition(v8::Handle<v8::Value> filter);

Completed in 1492 milliseconds

1 2 3 4 5 6 7 8 91011>>