Searched defs:filter (Results 176 - 200 of 720) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/gui/
H A DClassPathPanel.java33 * This <code>ListPanel</code> allows the user to add, edit, filter, move, and
178 JButton filterButton = new JButton(msg("filter"));
262 * Sets up the filter dialog with the filters from the specified class path
280 * Applies the entered filter to the specified class path entries.
383 // Set the filter text.
384 StringBuffer filter = null;
385 filter = appendFilter(filter, entry.getZipFilter());
386 filter = appendFilter(filter, entr
427 appendFilter(StringBuffer filter, List additionalFilter) argument
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowArrayAdapter.java39 private Filter filter; field in class:ShadowArrayAdapter
/external/selinux/python/sepolgen/src/sepolgen/
H A Daudit.py484 """Return RoleAllowSet statements matching the specified filter
489 role_filter - [optional] Filter object used to filter the
497 if not role_filter or role_filter.filter(cs):
506 filtering the restults with the passed in filter object.
508 Filter objects are object instances with a .filter method
513 avc_filter - [optional] Filter object used to filter the
524 if avc_filter.filter(avc):
536 def filter(self, avc): member in class:AVCTypeFilter
547 def filter(self, avc): member in class:ComputeSidTypeFilter
/external/skia/gm/
H A Dcolorfilterimagefilter.cpp210 sk_sp<SkColorFilter> filter = x >= 0 ? filters[x] : nullptr; local
212 paint.setShader(shader->makeWithColorFilter(filter));
H A Dimagefiltersclipped.cpp46 static void draw_clipped_filter(SkCanvas* canvas, sk_sp<SkImageFilter> filter, size_t i, argument
50 paint.setImageFilter(std::move(filter));
H A Dlumafilter.cpp31 static void draw_scene(SkCanvas* canvas, const sk_sp<SkColorFilter>& filter, SkBlendMode mode, argument
65 paint.setColorFilter(filter);
/external/skia/samplecode/
H A DSampleTiling.cpp42 static void setup(SkPaint* paint, const SkBitmap& bm, bool filter, argument
45 paint->setFilterQuality(filter ? kLow_SkFilterQuality : kNone_SkFilterQuality);
/external/skia/src/core/
H A DSkConvolver.h19 // Represents a filter in one dimension. Each output pixel has one entry in this
20 // object for the filter values contributing to it. You build up the filter
53 // Returns the maximum pixel span of a filter.
56 // Returns the number of filters in this filter. This is the dimension of the
79 // Retrieves a filter for the given |valueOffset|, a position in the output
81 // filter values are put into the corresponding out arguments (see AddFilter
87 const FilterInstance& filter = fFilters[valueOffset]; local
88 *filterOffset = filter.fOffset;
89 *filterLength = filter
[all...]
H A DSkSpriteBlitter_ARGB32.cpp266 SkColorFilter* filter = paint.getColorFilter(); local
274 if (!isSrcOver || filter) {
283 if (!isSrcOver || filter) {
285 // this can handle xfermode or filter, but not alpha
289 // this can handle alpha, but not xfermode or filter
/external/skia/src/effects/
H A DSkMergeImageFilter.cpp105 // filter does not affect transparent black.
125 // Composite all of the filter inputs.
185 SkImageFilter* filter = this->getInput(i); local
187 filter->toString(str);
/external/skia/src/gpu/
H A DGrTextureToYUVPlanes.cpp28 GrSamplerParams::FilterMode filter; local
30 filter = GrSamplerParams::kNone_FilterMode;
32 filter = GrSamplerParams::kBilerp_FilterMode;
40 filter));
/external/skia/tests/
H A DQuickRejectTest.cpp166 sk_sp<SkImageFilter> filter = SkLightingImageFilter::MakeDistantLitDiffuse( local
168 REPORTER_ASSERT(reporter, filter);
169 paint.setImageFilter(filter);
/external/strace/
H A Dseccomp.c37 # include <linux/filter.h>
114 decode_bpf_stmt(const struct bpf_filter *filter) argument
118 decode_bpf_code(filter->code);
120 if (BPF_CLASS(filter->code) == BPF_RET) {
121 unsigned int action = SECCOMP_RET_ACTION & filter->k;
122 unsigned int data = filter->k & ~action;
130 tprintf("%#x)", filter->k);
133 tprintf("BPF_STMT(%#x, %#x)", filter->code, filter->k);
138 decode_bpf_jump(const struct bpf_filter *filter) argument
158 const struct bpf_filter *filter = elem_buf; local
182 struct bpf_filter filter; local
[all...]
/external/syslinux/gpxe/src/drivers/net/ath5k/
H A Dath5k_pcu.c253 * ath5k_hw_set_bssid_mask - filter out bssids we listen
266 * NOTE: This is a simple filter and does *not* filter out all
404 * Set multicast filter
408 /* Set the multicat filter */
414 * ath5k_hw_get_rx_filter - Get current rx filter
418 * Returns the RX filter by reading rx filter and
419 * phy error filter registers. RX filter i
426 u32 data, filter = 0; local
453 ath5k_hw_set_rx_filter(struct ath5k_hw *ah, u32 filter) argument
[all...]
/external/testng/src/main/java/org/testng/junit/
H A DJUnitMethodFinder.java68 private ITestNGMethod[] privateFindTestMethods(INameFilter filter, Class cls) { argument
74 // method names in a Set to filter out duplicates.
89 if(filter.accept(method) && !acceptedMethodNames.contains(methodName)) {
/external/v8/src/
H A Dkeys.h35 PropertyFilter filter)
36 : isolate_(isolate), mode_(mode), filter_(filter) {}
40 Handle<JSReceiver> object, KeyCollectionMode mode, PropertyFilter filter,
68 PropertyFilter filter() { return filter_; } function in class:v8::internal::BASE_EMBEDDED
83 // Shadowing keys are used to filter keys. This happens when non-enumerable
126 KeyCollectionMode mode, PropertyFilter filter)
127 : isolate_(isolate), receiver_(receiver), mode_(mode), filter_(filter) {
34 KeyAccumulator(Isolate* isolate, KeyCollectionMode mode, PropertyFilter filter) argument
125 FastKeyAccumulator(Isolate* isolate, Handle<JSReceiver> receiver, KeyCollectionMode mode, PropertyFilter filter) argument
/external/vogar/test/vogar/target/
H A DAbstractTestRunnerTest.java98 private Function<String, String> filter; field in class:AbstractTestRunnerTest.ExpectedResults
108 filter = new Function<String, String>() {
124 filter = Functions.compose(filter, function);
206 String filtered = filter.apply(output);
/external/volley/src/main/java/com/android/volley/
H A DRequestQueue.java185 * A simple predicate or filter interface for Requests, for use by
193 * Cancels all requests in this queue for which the given filter applies.
194 * @param filter The filtering function to use
196 public void cancelAll(RequestFilter filter) { argument
199 if (filter.apply(request)) {
/external/webrtc/webrtc/base/
H A Ddbus.h62 // This filter string should ususally come from BuildFilterString()
63 explicit DBusSigFilter(const std::string &filter) argument
64 : caller_thread_(Thread::Current()), filter_(filter) {
67 // Builds a DBus monitor filter string from given DBus path, interface, and
85 // Returns the DBus monitor filter string.
86 const std::string &filter() const { return filter_; } function in class:rtc::DBusSigFilter
137 // Adds a filter to DBusMonitor.
138 bool AddFilter(DBusSigFilter *filter);
/external/webrtc/webrtc/voice_engine/
H A Dvoice_engine_impl.cc84 int VoiceEngine::SetTraceFilter(unsigned int filter) { argument
87 "SetTraceFilter(filter=0x%x)", filter);
89 // Remember old filter
91 Trace::set_level_filter(filter);
93 // If previous log was ignored, log again after changing filter
95 WEBRTC_TRACE(kTraceApiCall, kTraceVoice, -1, "SetTraceFilter(filter=0x%x)",
96 filter);
/external/wycheproof/java/com/google/security/wycheproof/
H A DWycheproofRunner.java131 * Custom filter to exclude certain test functions.
199 private void addFilter(Filter filter) { argument
201 filter(filter);
/external/ImageMagick/MagickCore/
H A Dresample.c79 #define FILTER_LUT 1 /* Use a LUT rather then direct filter calls */
87 #define WLUT_WIDTH 1024 /* size of the filter cache */
118 filter;
139 /* Use a Direct call to the filter functions */
147 /* the practical working support of the filter */
172 % weighting (filter) function. For more details see "Fundamentals of Texture
234 SetResampleFilter(resample_filter,image->filter);
310 % o resample_filter: the resample filter.
877 * that the result contains the reconstruction kernel filter support
1024 % size of the ellipse will match the support for the resampling filter bein
117 filter; member in struct:_ResampleFilter
[all...]
/external/ImageMagick/MagickWand/
H A Danimate.c149 "-filter type use this filter when resizing an image",
806 if (LocaleCompare("filter",option+1) == 0)
809 filter;
816 filter=ParseCommandOption(MagickFilterOptions,MagickFalse,argv[i]);
817 if (filter < 0)
807 filter; local
H A Ddisplay.c130 "-edge factor apply a filter to detect edges in the image",
131 "-enhance apply a digital filter to enhance a noisy image",
178 "-filter type use this filter when resizing an image",
1081 if (LocaleCompare("filter",option+1) == 0)
1084 filter;
1091 filter=ParseCommandOption(MagickFilterOptions,MagickFalse,argv[i]);
1092 if (filter < 0)
1082 filter; local
H A Dimport.c153 "-filter type use this filter when resizing an image",
789 if (LocaleCompare("filter",option+1) == 0)
792 filter;
799 filter=ParseCommandOption(MagickFilterOptions,MagickFalse,argv[i]);
800 if (filter < 0)
790 filter; local

Completed in 1075 milliseconds

1234567891011>>