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

<<11121314151617181920>>

  /libcore/luni/src/test/java/libcore/java/util/logging/
OldMemoryHandlerTest.java 25 import java.util.logging.Filter;
62 props.put("java.util.logging.MemoryHandler.filter", baseClassName + "$MockFilter");
76 assertNotNull("Filter should not be null", handler.getFilter());
84 public static class MockFilter implements Filter {
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixDirectoryStream.java 51 // filter (may be null)
52 private final DirectoryStream.Filter<? super Path> filter; field in class:UnixDirectoryStream
70 UnixDirectoryStream(UnixPath dir, long dp, DirectoryStream.Filter<? super Path> filter) {
73 this.filter = filter;
199 // return entry if no filter or filter accepts it
201 if (filter == null || filter.accept(entry)
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_netbsd_386.go 17 k.Filter = uint32(mode)
syscall_netbsd_amd64.go 17 k.Filter = uint32(mode)
syscall_netbsd_arm.go 17 k.Filter = uint32(mode)
syscall_openbsd_386.go 17 k.Filter = int16(mode)
syscall_openbsd_amd64.go 17 k.Filter = int16(mode)
syscall_openbsd_arm.go 17 k.Filter = int16(mode)
  /prebuilts/go/linux-x86/src/syscall/
syscall_netbsd_386.go 17 k.Filter = uint32(mode)
syscall_netbsd_amd64.go 17 k.Filter = uint32(mode)
syscall_netbsd_arm.go 17 k.Filter = uint32(mode)
syscall_openbsd_386.go 17 k.Filter = int16(mode)
syscall_openbsd_amd64.go 17 k.Filter = int16(mode)
syscall_openbsd_arm.go 17 k.Filter = int16(mode)
  /system/core/demangle/
demangle.cpp 71 static int Filter(bool compare) {
121 // With no arguments, act as a filter.
122 if (optind == argc) return Filter(compare);
  /external/python/cpython3/Lib/test/
test_tracemalloc.py 324 filter1 = tracemalloc.Filter(False, "b.py")
325 filter2 = tracemalloc.Filter(True, "a.py", 2)
326 filter3 = tracemalloc.Filter(True, "a.py", 5)
352 # No filter: just duplicate the snapshot
362 filter1 = tracemalloc.Filter(False, "a.py", domain=1)
363 filter2 = tracemalloc.Filter(True, "a.py", domain=1)
598 f = tracemalloc.Filter(True, "abc")
605 f = tracemalloc.Filter(False, "test.py", 123, True)
612 f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True)
622 # filter without line numbe
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosMeasurementDxe/
SmbiosMeasurementDxe.c 43 SMBIOS_FILTER_TABLE *Filter; // NULL means all fields
174 This function get filter structure by SMBIOS type.
271 SMBIOS_FILTER_TABLE *Filter;
282 if (FilterStruct->Filter == NULL || FilterStruct->FilterCount == 0) {
286 Filter = FilterStruct->Filter;
288 if (((SMBIOS_STRUCTURE *) TableEntry)->Length >= (Filter[Index].Offset + Filter[Index].Size)) {
292 if ((Filter[Index].Flags & SMBIOS_FILTER_TABLE_FLAG_IS_STRING) != 0) {
293 CopyMem (&StringId, (UINT8 *)TableEntry + Filter[Index].Offset, sizeof(StringId));
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 22 import android.filterfw.core.Filter;
53 * Encapsulates the mobile filter framework components needed to record video with
129 return Filter.isAvailable("com.google.android.filterpacks.facedetect.GoofyRenderFilter");
131 return Filter.isAvailable("android.filterpacks.videoproc.BackDropperFilter");
309 Filter rotateFilter = mRunner.getGraph().getFilter("rotate");
310 Filter metaRotateFilter = mRunner.getGraph().getFilter("metarotate");
338 Filter recorder = mRunner.getGraph().getFilter("recorder");
485 Filter goofyFilter = mRunner.getGraph().getFilter("goofyrenderer");
491 Filter backgroundSrc = mRunner.getGraph().getFilter("background");
495 // backdropper filter
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/
AsmAnalyzer.java 33 * Analyzes an input Jar to get all the relevant classes according to the given filter.
36 * {@link #parseInputJar(String)} followed by {@link #filter(Map, Filter, Logger)}.
76 * filter or that should be excluded. This modifies the map in-place.
78 * @param classes The in-out map of classes to examine and filter. The map is filtered
80 * @param filter A filter describing which classes to include and which ones to exclude.
83 void filter(Map<String, ClassReader> classes, Filter filter, Logger log) method in class:AsmAnalyzer
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 9 lexer grammar Filter;
12 filter=true;
73 example "skipping tokens that aren't important with filter mode" do
90 lexer = Filter::Lexer.new( input )
104 filter=true;
207 example "fuzzy lexing with the filter mode option" do
  /external/llvm/tools/llvm-cov/
CoverageFilters.h 23 /// \brief Matches specific functions that pass the requirement of this filter.
28 /// \brief Return true if the function passes the requirements of this filter.
109 /// \brief Append a filter to this collection.
110 void push_back(std::unique_ptr<CoverageFilter> Filter);
  /external/pdfium/xfa/fxfa/parser/
cxfa_filter.cpp 29 constexpr wchar_t kName[] = L"filter";
38 XFA_Element::Filter,
  /external/skia/include/private/
GrTextureProxy.h 30 GrSamplerState::Filter highestFilterMode() const;
  /external/skia/src/gpu/
GrProcessor.h 268 GrSamplerState::Filter = GrSamplerState::Filter::kNearest,
277 GrSamplerState::Filter = GrSamplerState::Filter::kNearest,
GrTextureAdjuster.h 28 const GrSamplerState::Filter* filterOrNullForBicubic,

Completed in 656 milliseconds

<<11121314151617181920>>