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

1 2 3 4 5 6 7 8 91011>>

  /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 {
45 static const Filter kDefaultCompilerFilter = kSpeed;
47 // Returns true if an oat file with this compiler filter contains
49 static bool IsAotCompilationEnabled(Filter filter);
51 // Returns true if an oat file with this compiler filter contains
54 static bool IsAnyCompilationEnabled(Filter filter);
    [all...]
  /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();
  /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/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFilter.java 3 import android.widget.Filter;
7 @Implements(Filter.class)
  /frameworks/base/core/java/android/hardware/radio/
ProgramList.aidl 20 parcelable ProgramList.Filter;
  /external/junit/src/main/java/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.
12 * Remove tests that don't pass the parameter <code>filter</code>.
14 * @param filter the {@link Filter} to apply
17 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
17 public abstract class Filter {
19 * A null <code>Filter</code> that passes all tests through.
21 public static final Filter ALL = new Filter() {
38 public Filter intersect(Filter second)
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
Filter.java 20 public interface Filter<T> {
22 boolean filter(T input); method in interface:Filter
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
Filters.java 8 import org.junit.runner.manipulation.Filter;
11 public static Filter methodNameContains(final String substring) {
12 return new Filter() {
  /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/clang/test/CodeGen/
available-externally-hidden.cpp 6 struct Filter {
21 class SyncMessageFilter : public Filter, public Sender {
  /external/junit/src/main/java/org/junit/runner/
FilterFactory.java 3 import org.junit.runner.manipulation.Filter;
6 * Extend this class to create a factory that creates {@link Filter}.
10 * Creates a {@link Filter} given a {@link FilterFactoryParams} argument.
12 * @param params Parameters needed to create the {@link Filter}
14 Filter createFilter(FilterFactoryParams params) throws FilterNotCreatedException;
17 * Exception thrown if the {@link Filter} cannot be created.
  /external/skia/include/gpu/
GrSamplerState.h 18 enum class Filter : uint8_t { kNearest, kBilerp, kMipMap };
23 return GrSamplerState(WrapMode::kClamp, Filter::kBilerp);
26 constexpr GrSamplerState() : GrSamplerState(WrapMode::kClamp, Filter::kNearest) {}
28 constexpr GrSamplerState(WrapMode wrapXAndY, Filter filter)
29 : fWrapModes{wrapXAndY, wrapXAndY}, fFilter(filter) {}
31 constexpr GrSamplerState(const WrapMode wrapModes[2], Filter filter)
32 : fWrapModes{wrapModes[0], wrapModes[1]}, fFilter(filter) {}
43 Filter filter() const { return fFilter; function in class:GrSamplerState
    [all...]
  /external/skqp/include/gpu/
GrSamplerState.h 18 enum class Filter : uint8_t { kNearest, kBilerp, kMipMap };
23 return GrSamplerState(WrapMode::kClamp, Filter::kBilerp);
26 constexpr GrSamplerState() : GrSamplerState(WrapMode::kClamp, Filter::kNearest) {}
28 constexpr GrSamplerState(WrapMode wrapXAndY, Filter filter)
29 : fWrapModes{wrapXAndY, wrapXAndY}, fFilter(filter) {}
31 constexpr GrSamplerState(const WrapMode wrapModes[2], Filter filter)
32 : fWrapModes{wrapModes[0], wrapModes[1]}, fFilter(filter) {}
43 Filter filter() const { return fFilter; function in class:GrSamplerState
    [all...]
  /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...]

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 91011>>