HomeSort by relevance Sort by last modified time
    Searched refs:Filter (Results 1 - 25 of 647) 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...]
dexopt_test.h 38 // filter - controls the compilation filter
43 CompilerFilter::Filter filter,
51 CompilerFilter::Filter filter,
58 CompilerFilter::Filter filter,
62 void GenerateOatForTest(const char* dex_location, CompilerFilter::Filter filter);
    [all...]
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
Filter.java 19 public class Filter {
  /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 20 import javax.servlet.Filter;
23 * A linked binding to a filter.
30 /** Returns the key used to lookup the filter instance. */
31 Key<? extends Filter> getLinkedKey();
InstanceFilterBindingImpl.java 21 import javax.servlet.Filter;
28 class InstanceFilterBindingImpl extends AbstractServletModuleBinding<Filter>
32 Map<String, String> initParams, Filter target, UriPatternMatcher patternMatcher) {
37 public Filter getFilterInstance() {
LinkedFilterBindingImpl.java 22 import javax.servlet.Filter;
29 class LinkedFilterBindingImpl extends AbstractServletModuleBinding<Key<? extends Filter>>
34 Key<? extends Filter> target,
40 public Key<? extends Filter> getLinkedKey() {
FiltersModuleBuilder.java 25 import javax.servlet.Filter;
41 public ServletModule.FilterKeyBindingBuilder filter(List<String> patterns) { method in class:FiltersModuleBuilder
76 public void through(Class<? extends Filter> filterKey) {
81 public void through(Key<? extends Filter> filterKey) {
86 public void through(Filter filter) {
87 through(filter, new HashMap<String, String>());
91 public void through(Class<? extends Filter> filterKey, Map<String, String> initParams) {
98 public void through(Key<? extends Filter> filterKey, Map<String, String> initParams) {
103 Key<? extends Filter> filterKey, Map<String, String> initParams, Filter filterInstance)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/icu/
Filter.java 4 * Interface for implementing a filter on a collection of values.
7 public interface Filter {
9 * @return true if the specified value is allowed through the filter.
  /external/clang/test/CodeGenCXX/
pr24097.cpp 3 struct Filter {
9 struct SyncMessageFilter : public Filter, public Sender {
  /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...]
  /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() {
  /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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CoverageFilters.cpp 57 void CoverageFilters::push_back(std::unique_ptr<CoverageFilter> Filter) {
58 Filters.push_back(std::move(Filter));
63 for (const auto &Filter : Filters) {
64 if (Filter->matches(CM, Function))
71 for (const auto &Filter : Filters) {
72 if (Filter->matchesFilename(Filename))
81 for (const auto &Filter : Filters) {
82 if (!Filter->matches(CM, Function))
  /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/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowFilterTest.java 5 import android.widget.Filter;
18 Filter filter = new Filter() { local
31 filter.filter("");
39 Filter filter = new Filter() { local
54 filter.filter("", new Filter.FilterListener()
67 Filter filter = new Filter() { local
89 Filter filter = new Filter() { local
    [all...]
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Appender.java 19 import org.apache.log4j.spi.Filter;
33 * Add a filter to the end of the filter list.
37 void addFilter(Filter newFilter);
40 * Returns the head Filter. The Filters are organized in a linked list
43 * @return the head Filter or null, if no Filters are present
46 public Filter getFilter();
  /external/junit/src/main/java/org/junit/internal/requests/
FilterRequest.java 6 import org.junit.runner.manipulation.Filter;
19 private final Filter fFilter;
25 * @param filter {@link Filter} to apply to the Tests described in
28 public FilterRequest(Request request, Filter filter) {
30 this.fFilter = filter;
40 return new ErrorReportingRunner(Filter.class, new Exception(String
  /external/webrtc/webrtc/common_audio/
fir_filter.h 18 // Finite Impulse Response filter using floating-point arithmetic.
21 // Creates a filter with the given coefficients. All initial state values will
23 // The length of the chunks fed to the filter should never be greater than
35 virtual void Filter(const float* in, size_t length, float* out) = 0;
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FilterTest.java 20 import java.util.logging.Filter;
26 * This testcase verifies the signature of the interface Filter.
35 * This inner class implements the interface Filter to verify the signature.
37 private class MockFilter implements Filter {

Completed in 745 milliseconds

1 2 3 4 5 6 7 8 91011>>