/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/ |
Filter.java | 19 public class Filter {
|
/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();
|
/art/runtime/ |
compiler_filter.h | 30 // Note: Order here matters. Later filter choices are considered "as good 31 // as" earlier filter choices. 32 enum Filter { 47 // Returns true if an oat file with this compiler filter contains 49 static bool IsBytecodeCompilationEnabled(Filter filter); 51 // Returns true if an oat file with this compiler filter contains 53 static bool IsJniCompilationEnabled(Filter filter); 55 // Returns true if this compiler filter requires running verification [all...] |
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
InstanceFilterBinding.java | 19 import javax.servlet.Filter; 22 * A binding to a single instance of a filter. 29 /** Returns the filter instance that will be used. */ 30 Filter getFilterInstance();
|
LinkedFilterBinding.java | 21 import javax.servlet.Filter; 24 * A linked binding to a filter. 31 /** Returns the key used to lookup the filter instance. */ 32 Key<? extends Filter> getLinkedKey();
|
InstanceFilterBindingImpl.java | 23 import javax.servlet.Filter; 30 class InstanceFilterBindingImpl extends AbstractServletModuleBinding<Filter> implements 34 Filter target, UriPatternMatcher patternMatcher) { 38 public Filter getFilterInstance() {
|
/libcore/ojluni/src/main/java/java/util/logging/ |
Filter.java | 30 * A Filter can be used to provide fine grain control over 33 * Each Logger and each Handler can have a filter associated with it. 41 public interface Filter {
|
/external/clang/test/CodeGenCXX/ |
pr24097.cpp | 3 struct Filter { 9 struct SyncMessageFilter : public Filter, public Sender {
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/ |
FixtureDef.java | 39 public final Filter filter = new Filter(); field in class:FixtureDef
|
Filter.java | 21 public class Filter {
|
/external/robolectric/v1/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...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/ |
Filter.java | 21 public class Filter {
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/ |
Filter.java | 32 public class Filter { 51 public Filter() { 57 public void set(Filter argOther) {
|
/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...] |
/external/llvm/tools/llvm-cov/ |
CoverageFilters.cpp | 40 void CoverageFilters::push_back(std::unique_ptr<CoverageFilter> Filter) { 41 Filters.push_back(std::move(Filter)); 45 for (const auto &Filter : Filters) { 46 if (Filter->matches(Function)) 54 for (const auto &Filter : Filters) { 55 if (!Filter->matches(Function))
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/filters/ |
sanitizer.py | 7 class Filter(_base.Filter, HTMLSanitizerMixin): 9 for token in _base.Filter.__iter__(self):
|
/external/clang/test/CodeGen/ |
available-externally-hidden.cpp | 6 struct Filter { 21 class SyncMessageFilter : public Filter, public Sender {
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
NullFilter.java | 20 import android.filterfw.core.Filter; 26 public class NullFilter extends Filter {
|
/external/opencv3/modules/cudafilters/include/opencv2/ |
cudafilters.hpp | 75 class CV_EXPORTS Filter : public Algorithm 78 /** @brief Applies the specified filter to the image. 88 // Box Filter 90 /** @brief Creates a normalized 2D box filter. 102 CV_EXPORTS Ptr<Filter> createBoxFilter(int srcType, int dstType, Size ksize, Point anchor = Point(-1,-1), 106 // Linear Filter 108 /** @brief Creates a non-separable linear 2D filter. 112 @param kernel 2D array of filter coefficients. 120 CV_EXPORTS Ptr<Filter> createLinearFilter(int srcType, int dstType, InputArray kernel, Point anchor = Point(-1,-1), 124 // Laplacian Filter [all...] |
/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...] |