| /libcore/luni/src/main/java/java/util/logging/ |
| Filter.java | 21 * A {@code Filter} provides a mechanism for exercising fine-grained control 24 public interface Filter {
|
| /external/webkit/Source/WebCore/platform/graphics/filters/ |
| Filter.h | 37 class Filter : public RefCounted<Filter> { 39 virtual ~Filter() { }
|
| /external/webkit/Source/WebCore/xml/ |
| XPathPath.cpp | 41 Filter::Filter(Expression* expr, const Vector<Predicate*>& predicates) 49 Filter::~Filter() 55 Value Filter::evaluate() const 181 Path::Path(Filter* filter, LocationPath* path) 182 : m_filter(filter) 185 setIsContextNodeSensitive(filter->isContextNodeSensitive()); 186 setIsContextPositionSensitive(filter->isContextPositionSensitive()) [all...] |
| XPathPath.h | 42 class Filter : public Expression { 44 Filter(Expression*, const Vector<Predicate*>& = Vector<Predicate*>()); 45 virtual ~Filter(); 77 Path(Filter*, LocationPath*); 85 Filter* m_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/chromium/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);
|
| /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/icu4c/common/unicode/ |
| uniset.h | [all...] |
| /external/webrtc/src/modules/audio_processing/main/source/ |
| high_pass_filter_impl.cc | 51 int Filter(FilterState* hpf, WebRtc_Word16* data, int length) { 125 err = Filter(my_handle,
|
| /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/ |
| Filter.java | 29 * Image filter for photo editing; most of its methods must be called from a single GL thread except 32 public abstract class Filter implements Parcelable { 37 private static final HashMap<Filter, Effect> effects = new HashMap<Filter, Effect>(); 43 * Filter context should be released before the current GL context is lost. 100 protected static <T extends Filter> Parcelable.Creator<T> creatorOf(Class<T> filterClass) { 105 * Saves states for restoring filter later; subclasses can override this to persist states. 111 * Restores filter from the saved states; subclasses can override this to persist states.
|
| /packages/apps/Settings/src/com/android/settings/bluetooth/ |
| BluetoothDeviceFilter.java | 27 * Filter object that returns whether or not the BluetoothDevice 28 * passed to it matches the specified filter type constant from 34 /** The filter interface to external classes. */ 35 interface Filter { 39 /** All filter singleton (referenced directly). */ 40 static final Filter ALL_FILTER = new AllFilter(); 42 /** Bonded devices only filter (referenced directly). */ 43 static final Filter BONDED_DEVICE_FILTER = new BondedDeviceFilter(); 45 /** Unbonded devices only filter (referenced directly). */ 46 static final Filter UNBONDED_DEVICE_FILTER = new UnbondedDeviceFilter() [all...] |
| /external/chromium/net/base/ |
| filter.cc | 5 #include "net/base/filter.h" 16 // Filter types (using canonical lower case only): 47 Filter::~Filter() {} 50 Filter* Filter::Factory(const std::vector<FilterType>& filter_types, 55 Filter* filter_list = NULL; // Linked list of filters. 66 Filter* Filter::GZipFactory() { 71 Filter* Filter::FactoryForTests(const std::vector<FilterType>& filter_types [all...] |
| filter.h | 5 // Filter performs filtering on data streams. Sample usage: 9 // Filter* filter = Filter::Factory(filter_type, size); 10 // int pre_filter_data_len = filter->stream_buffer_size(); 11 // pre_filter_source->read(filter->stream_buffer(), pre_filter_data_len); 13 // filter->FlushStreamBuffer(pre_filter_data_len); 17 // filter->ReadFilteredData(post_filter_buf, &post_filter_data_len); 19 // To filter a data stream, the caller first gets filter's stream_buffer [all...] |
| /external/clang/lib/CodeGen/ |
| CGCleanup.h | 94 enum Kind { Cleanup, Catch, Terminate, Filter }; 383 /// Only exceptions matching the filter types will be permitted to be 401 : EHScope(Filter, EHScopeStack::stable_end()) { 422 return scope->getKind() == Filter; 463 case EHScope::Filter:
|
| /external/libpcap/ |
| pcap-pf.c | 21 * packet filter subroutines for tcpdump 189 * Short-circuit evaluation: if using BPF filter 193 * Note: the filter code was generated assuming 196 * in the kernel, so we run the filter before 248 * "ps_recv" counts only packets that passed the filter. 254 * passed the filter, and on others it counts packets 255 * that didn't pass the filter....) 257 * "ps_drop" counts packets that passed the kernel filter 263 * the input filter, of course). 267 * "ps_recv" counts only packets that passed the filter [all...] |
| /frameworks/base/include/media/ |
| Metadata.h | 50 typedef SortedVector<Type> Filter;
|
| /external/clang/include/clang/Sema/ |
| Lookup.h | 509 class Filter { 516 Filter(LookupResult &Results) 521 ~Filter() { 523 "LookupResult::Filter destroyed without done() call"); 531 assert(I != Results.end() && "next() called on empty filter"); 563 /// Create a filter for this result set. 564 Filter makeFilter() { 565 return Filter(*this);
|
| /external/skia/gpu/include/ |
| GrSamplerState.h | 26 enum Filter { 32 * Blend between closest 4 src texels to sample position (tent filter) 91 explicit GrSamplerState(Filter filter) { 95 fFilter = filter; 100 GrSamplerState(WrapMode wx, WrapMode wy, Filter filter) { 104 fFilter = filter; 110 const GrMatrix& matrix, Filter filter) { [all...] |
| /frameworks/base/core/java/android/widget/ |
| Filter.java | 26 * <p>A filter constrains data with a filtering pattern.</p> 31 * <p>Filtering operations performed by calling {@link #filter(CharSequence)} or 32 * {@link #filter(CharSequence, android.widget.Filter.FilterListener)} are 39 public abstract class Filter { 40 private static final String LOG_TAG = "Filter"; 42 private static final String THREAD_NAME = "Filter"; 54 * <p>Creates a new asynchronous filter.</p> 56 public Filter() { 79 * @param constraint the constraint used to filter the dat 83 public final void filter(CharSequence constraint) { method in class:Filter 84 filter(constraint, null); method 101 public final void filter(CharSequence constraint, FilterListener listener) { method in class:Filter [all...] |
| /sdk/lint/cli/src/com/android/tools/lint/ |
| PositionXmlParser.java | 54 Filter filter = new Filter(XMLReaderFactory.createXMLReader()); local 57 transformer.transform(new SAXSource(filter, input), result); 72 private static class Filter extends XMLFilterImpl { 75 Filter(XMLReader reader) {
|
| /external/llvm/utils/TableGen/ |
| FixedLenDecoderEmitter.cpp | 33 // BIT_UNFILTERED is used as the init value for a filter position. It is used 34 // only for filter processings. 90 /// Filter - Filter works with FilterChooser to produce the decoding tree for 93 /// It is useful to think of a Filter as governing the switch stmts of the 97 /// chooses a best Filter to do its job. 101 /// the Filter/FilterChooser combo does not know how to distinguish among the 126 class Filter { 128 FilterChooser *Owner; // points to the FilterChooser who owns this filter 130 unsigned NumBits; // number of bits to filter [all...] |
| /external/v8/test/mjsunit/ |
| json.js | 133 function Filter(key, value) { 136 return Filter;
|
| /frameworks/base/tools/localize/ |
| XLIFFFile.cpp | 224 XLIFFFile::Filter(bool (*func)(const string&,const TransUnit&,void*), void* cookie)
|
| /frameworks/base/core/java/android/view/ |
| LayoutInflater.java | 76 private Filter mFilter; 98 public interface Filter { 317 * @return The {@link Filter} currently used by this LayoutInflater to restrict the set of Views 320 public Filter getFilter() { 325 * Sets the {@link Filter} to by this LayoutInflater. If a view is attempted to be inflated 326 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will 327 * throw an {@link InflateException}. This filter will replace any previous filter set on this 330 * @param filter The Filter which restricts the set of Views that are allowed to be inflated [all...] |
| /development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
| SampleView.java | 180 class Filter extends ViewerFilter { 249 new Filter() 463 shell, "Contains Filter",
|