| /src/external/apache2/llvm/dist/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))
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
| ResourceScriptCppFilter.cpp | 22 class Filter { 24 explicit Filter(StringRef Input) : Data(Input), DataLength(Input.size()) {} 42 std::string Filter::run() { 58 bool Filter::parseLine(StringRef Line) { 103 bool Filter::streamEof() const { return Pos == DataLength; } 109 std::string filterCppOutput(StringRef Input) { return Filter(Input).run(); }
|
| /src/sys/rump/dev/lib/libbpf/ |
| Makefile | 7 COMMENT=Berkeley Packet Filter
|
| /src/sys/rump/net/lib/libbpfjit/ |
| Makefile | 9 COMMENT=JIT compiler for Berkeley Packet Filter
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| str2filter.c | 3 /* str2filter.c - parse an RFC 4515 string filter */ 43 Filter * 47 Filter *f = NULL; 78 Filter *
|
| filter.c | 1 /* $NetBSD: filter.c,v 1.9 2025/09/05 21:16:25 christos Exp $ */ 3 /* filter.c - routines for parsing and dealing with filters */ 30 __RCSID("$NetBSD: filter.c,v 1.9 2025/09/05 21:16:25 christos Exp $"); 42 const Filter *slap_filter_objectClass_pres; 48 Filter **f, 55 Filter *f, 72 static Filter filter_objectClass_pres = { LDAP_FILTER_PRESENT }; 93 Filter **filt, 100 Filter f; 104 * A filter looks like this coming in [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Remarks/ |
| RemarkStreamer.cpp | 32 Error RemarkStreamer::setFilter(StringRef Filter) { 33 Regex R = Regex(Filter); 45 // No filter means all strings pass.
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/ |
| RemarkStreamer.h | 43 /// The regex used to filter remarks based on the passes that emit them. 62 /// Set a pass filter based on a regex \p Filter. 64 Error setFilter(StringRef Filter); 65 /// Check wether the string matches the filter.
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-read-memory-leak.py | 28 filters = [tracemalloc.Filter(True, "*" + os.path.basename(__file__))] 57 # Filter the snapshots; we only care about allocations originating
|
| py-inferior-leak.py | 36 filters = [tracemalloc.Filter(True, "*py-inferior-leak.py")] 76 # Filter the snapshots; we only care about allocations originating
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| WinEHFuncInfo.h | 53 /// Holds the filter expression function. 54 const Function *Filter = nullptr; 79 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| IvarInvalidationChecker.cpp | 214 /// Filter on the checks performed. 215 const ChecksFilter &Filter; 221 Mgr (InMgr), BR(InBR), Filter(InFilter) {} 463 if (Filter.check_MissingInvalidationMethod) 464 reportNoInvalidationMethod(Filter.checkName_MissingInvalidationMethod, 474 if (!Filter.check_InstanceVariableInvalidation) 521 reportNoInvalidationMethod(Filter.checkName_InstanceVariableInvalidation, 564 BR.EmitBasicReport(MethodD, Filter.checkName_InstanceVariableInvalidation, 570 IvarD, Filter.checkName_InstanceVariableInvalidation, 728 ChecksFilter Filter; [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ |
| AllTUsExecution.h | 73 extern llvm::cl::opt<std::string> Filter;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-inferior-leak.py | 36 filters = [tracemalloc.Filter(True, "*py-inferior-leak.py")] 76 # Filter the snapshots; we only care about allocations originating
|
| /src/external/mit/xorg/lib/libXrender/ |
| Makefile | 11 Glyph.c Picture.c FillRect.c FillRects.c Filter.c \
|
| /src/external/bsd/libpcap/dist/ |
| pcap-pf.c | 23 * packet filter subroutines for tcpdump 84 int filtering_in_kernel; /* using kernel filter */ 86 u_long TotAccepted; /* count accepted by filter */ 198 * Short-circuit evaluation: if using BPF filter 200 * the packet passed the filter. 202 * Note: the filter code was generated assuming 205 * in the kernel, so we run the filter before 251 * "ps_recv" counts only packets that passed the filter. 257 * passed the filter, and on others it counts packets 258 * that didn't pass the filter.... [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| CodeCompleteConsumer.cpp | 519 StringRef Filter, CodeCompletionResult Result) { 523 Result.Declaration->getIdentifier()->getName().startswith(Filter)); 525 return !StringRef(Result.Keyword).startswith(Filter); 527 return !Result.Macro->getName().startswith(Filter); 530 StringRef(Result.Pattern->getTypedText()).startswith(Filter)); 544 StringRef Filter = SemaRef.getPreprocessor().getCodeCompletionFilter(); 547 if (!Filter.empty() && isResultFilteredOut(Filter, Results[I]))
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| AllTUsExecution.cpp | 59 Filter("filter", 60 llvm::cl::desc("Only process files that match this filter. " 102 llvm::Regex RegexFilter(Filter);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/ |
| traits.d | 465 // std.meta.Filter 466 template Filter(alias pred, TList...) 470 alias Filter = AliasSeq!(); 475 alias Filter = AliasSeq!(TList[0]); 477 alias Filter = AliasSeq!(); 480 * the number of Filter instantiations 487 alias Filter = AliasSeq!(TList[0], TList[1]); 489 alias Filter = AliasSeq!(TList[0]); 494 alias Filter = AliasSeq!(TList[1]); 496 alias Filter = AliasSeq!() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| AssumeBundleQueries.cpp | 159 Filter) { 173 Filter(RK, II, &II->bundle_op_info_begin()[Elem.Index])) { 188 Filter(RK, cast<Instruction>(U.getUser()), Bundle)) {
|
| /src/external/bsd/openldap/dist/servers/slapd/overlays/ |
| nestgroup.c | 57 { BER_BVC("member-filter"), NG_MBR_FILTER }, 59 { BER_BVC("memberof-filter"), NG_MOF_FILTER }, 256 Filter *nf_f; 257 Filter *nf_new; 261 /* Record occurrences of ad in filter. Ignore in negated filters. */ 263 nestgroup_filter_instances( Operation *op, AttributeDescription *ad, Filter *f, int not, 402 Filter mf; 434 Filter *f, *nf; 438 f = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx ); 449 f = op->o_tmpalloc( sizeof(Filter), op->o_tmpmemctx ) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Lookup.h | 617 class Filter { 625 Filter(LookupResult &Results) : Results(Results), I(Results.begin()) {} 628 Filter(Filter &&F) 634 ~Filter() { 636 "LookupResult::Filter destroyed without done() call"); 644 assert(I != Results.end() && "next() called on empty filter"); 681 /// Create a filter for this result set. 682 Filter makeFilter() { 683 return Filter(*this) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGCleanup.h | 105 enum Kind { Cleanup, Catch, Terminate, Filter }; 433 /// Only exceptions matching the filter types will be permitted to be 451 : EHScope(Filter, EHScopeStack::stable_end()) { 473 return scope->getKind() == Filter; 515 case EHScope::Filter:
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| AssumeBundleQueries.h | 154 /// in AttrKinds and it matches the Filter. 160 Filter = [](auto...) { return true; });
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/ |
| Instrumentation.h | 71 // Regexes separated by a semi-colon to filter the files to instrument. 72 std::string Filter; 74 // Regexes separated by a semi-colon to filter the files to not instrument.
|