/freebsd/crypto/openssh/regress/ |
H A D | servcfginclude.sh | 7 Match host a 10 Match host b 14 Match host c 18 Match host m 21 Match Host d 24 Match Host e 28 Match Host f 32 Match Host n 37 Match host xxxxxx 41 Match host a [all …]
|
H A D | cfginclude.sh | 10 Match host a 13 Match host b # comment 17 Match host c 21 Match host m 40 Match host xxxxxx 44 Match host a 47 Match host b 50 Match host c # comment 64 Match host a 67 Match host b [all …]
|
H A D | match-subsystem.sh | 40 Match all 48 Match all 57 Match user * 65 Match user * 68 Match all 77 Match all 86 Match user *
|
H A D | addrmatch.sh | 25 Match Address 192.168.0.0/16,!192.168.30.0/24,10.0.0.0/8,host.example.com 27 Match Address 1.1.1.1,::1,!::3,2000::/16 29 Match LocalAddress 127.0.0.1,::1 31 Match LocalPort 5678
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | Stencil.cpp | 46 static Error printNode(StringRef Id, const MatchFinder::MatchResult &Match, in printNode() argument 50 auto NodeOrErr = getNode(Match.Nodes, Id); in printNode() 53 NodeOrErr->print(Os, PrintingPolicy(Match.Context->getLangOpts())); in printNode() 76 Error eval(const MatchFinder::MatchResult &Match, in eval() argument 94 Error eval(const MatchFinder::MatchResult &Match, in eval() argument 96 return printNode(Id, Match, Result); in eval() 144 Error eval(const MatchFinder::MatchResult &Match, in eval() argument 149 return printNode(Id, Match, Result); in eval() 151 const auto *E = Match.Nodes.getNodeAs<Expr>(Id); in eval() 158 Source = tooling::buildParens(*E, *Match.Context); in eval() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVOptions.cpp | 410 LVMatch Match; in createMatchEntry() local 413 Match.Pattern = std::string(Pattern); in createMatchEntry() 415 Match.RE = std::make_shared<Regex>(Pattern, IgnoreCase ? Regex::IgnoreCase in createMatchEntry() 418 if (!Match.RE->isValid(Error)) in createMatchEntry() 423 Match.Mode = LVMatchMode::Regex; in createMatchEntry() 424 Filters.push_back(Match); in createMatchEntry() 430 Match.Pattern = std::string(Pattern); in createMatchEntry() 431 if (Match.Pattern.size()) { in createMatchEntry() 432 Match.Mode = IgnoreCase ? LVMatchMode::NoCase : LVMatchMode::Match; in createMatchEntry() 433 Filters.push_back(Match); in createMatchEntry() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonGenExtract.cpp | 107 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY() local 111 if (!Match) { in INITIALIZE_PASS_DEPENDENCY() 114 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY() 118 if (!Match) { in INITIALIZE_PASS_DEPENDENCY() 122 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)), in INITIALIZE_PASS_DEPENDENCY() 124 if (Match && NoSR0) in INITIALIZE_PASS_DEPENDENCY() 127 if (!Match) { in INITIALIZE_PASS_DEPENDENCY() 131 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY() 134 if (!Match) { in INITIALIZE_PASS_DEPENDENCY() 138 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | RunLoopAutoreleaseLeakChecker.cpp | 80 static void emitDiagnostics(BoundNodes &Match, in emitDiagnostics() argument 91 const auto *ME = Match.getNodeAs<ObjCMessageExpr>(OtherMsgBind); in emitDiagnostics() 95 Match.getNodeAs<ObjCAutoreleasePoolStmt>(AutoreleasePoolBind); in emitDiagnostics() 97 Match.getNodeAs<ObjCAutoreleasePoolStmt>(OtherStmtAutoreleasePoolBind); in emitDiagnostics() 100 const auto *RL = Match.getNodeAs<ObjCMessageExpr>(RunLoopBind); in emitDiagnostics() 101 const auto *RLR = Match.getNodeAs<Stmt>(RunLoopRunBind); in emitDiagnostics() 169 for (BoundNodes Match : Matches) in checkTempObjectsInSamePool() local 170 emitDiagnostics(Match, D, BR, AM, Chkr); in checkTempObjectsInSamePool() 190 for (BoundNodes Match : Matches) in checkTempObjectsInNoPool() local 191 emitDiagnostics(Match, D, BR, AM, Chkr); in checkTempObjectsInNoPool()
|
H A D | ObjCAutoreleaseWriteChecker.cpp | 111 static void emitDiagnostics(BoundNodes &Match, const Decl *D, BugReporter &BR, in emitDiagnostics() argument 116 const auto *PVD = Match.getNodeAs<ParmVarDecl>(ParamBind); in emitDiagnostics() 121 const auto *MarkedStmt = Match.getNodeAs<Expr>(ProblematicWriteBind); in emitDiagnostics() 126 MarkedStmt = Match.getNodeAs<Expr>(CapturedBind); in emitDiagnostics() 136 bool IsMethod = Match.getNodeAs<ObjCMethodDecl>(IsMethodBind) != nullptr; in emitDiagnostics() 138 bool IsARP = Match.getNodeAs<ObjCAutoreleasePoolStmt>(IsARPBind) != nullptr; in emitDiagnostics() 230 for (BoundNodes Match : Matches) in checkASTCodeBody() local 231 emitDiagnostics(Match, D, BR, AM, this); in checkASTCodeBody()
|
H A D | PointerIterationChecker.cpp | 35 static void emitDiagnostics(const BoundNodes &Match, const Decl *D, in emitDiagnostics() argument 40 const auto *MarkedStmt = Match.getNodeAs<Stmt>(WarnAtNode); in emitDiagnostics() 88 for (const auto &Match : Matches) in checkASTCodeBody() local 89 emitDiagnostics(Match, D, BR, AM, this); in checkASTCodeBody()
|
H A D | PointerSortingChecker.cpp | 35 static void emitDiagnostics(const BoundNodes &Match, const Decl *D, in emitDiagnostics() argument 40 const auto *MarkedStmt = Match.getNodeAs<CallExpr>(WarnAtNode); in emitDiagnostics() 102 for (const auto &Match : Matches) in checkASTCodeBody() local 103 emitDiagnostics(Match, D, BR, AM, this); in checkASTCodeBody()
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | StringMatcher.cpp | 36 for (const StringMatcher::StringPair *Match : Matches) in FindFirstNonCommonLetter() local 37 if (Match->first[i] != Letter) in FindFirstNonCommonLetter() 79 for (const StringPair *Match : Matches) in EmitStringMatcherForChar() local 80 MatchesByLetter[Match->first[CharNo]].push_back(Match); in EmitStringMatcherForChar() 138 for (const StringPair &Match : Matches) in Emit() local 139 MatchesByLength[Match.first.size()].push_back(&Match); in Emit()
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | Library.cpp | 17 SmallVector<StringRef, 3> Match; in getFrameworkNameFromInstallName() local 18 Rule.match(InstallName, &Match); in getFrameworkNameFromInstallName() 19 if (Match.empty()) in getFrameworkNameFromInstallName() 21 return Match.back(); in getFrameworkNameFromInstallName()
|
H A D | HeaderFile.cpp | 73 bool Match = Rule.match(Header.getPath()); in match() local 74 if (Match) in match() 76 return Match; in match()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_suppressions.cpp | 49 return suppression_ctx->Match(interceptor_name, kInterceptorName, &s); in IsInterceptorSuppressed() 62 return suppression_ctx->Match(global_var_name, kODRViolation, &s); in IsODRViolationSuppressed() 78 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s)) in IsStackTraceSuppressed() 92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction, in IsStackTraceSuppressed()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_suppressions.cpp | 98 if (suppression_ctx->Match(info.function, stype, sp) || in IsSuppressed() 99 suppression_ctx->Match(info.file, stype, sp) || in IsSuppressed() 100 suppression_ctx->Match(info.module, stype, sp)) { in IsSuppressed() 137 if (suppression_ctx->Match(global.name, stype, &s) || in IsSuppressed() 138 suppression_ctx->Match(global.module, stype, &s)) { in IsSuppressed()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | FormatString.cpp | 349 return Match; in matchesType() 371 return Match; in matchesType() 374 return Match; in matchesType() 413 return Match; in matchesType() 431 return Match; in matchesType() 438 return Match; in matchesType() 534 return Match; in matchesType() 548 return pointeeTy == C.getWideCharType() ? Match : NoMatch; in matchesType() 555 return Match; in matchesType() 566 return Match; in matchesType() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan_suppressions.cpp | 47 if (suppressions->Match(moduleName, suppr_type, &s)) in GetSuppressionForAddr() 54 if (suppressions->Match(cur->info.function, suppr_type, &s) || in GetSuppressionForAddr() 55 suppressions->Match(cur->info.file, suppr_type, &s)) { in GetSuppressionForAddr()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | NSDictionary.h | 46 virtual bool Match(ConstString class_name) = 0; 54 bool Match(ConstString class_name) override; 63 bool Match(ConstString class_name) override;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/ |
H A D | MCTargetAsmParser.h | 171 Match, enumerator 205 explicit DiagnosticPredicate(bool Match) in DiagnosticPredicate() 206 : Type(Match ? DiagnosticPredicateTy::Match in DiagnosticPredicate() 212 operator bool() const { return Type == DiagnosticPredicateTy::Match; } 213 bool isMatch() const { return Type == DiagnosticPredicateTy::Match; } in isMatch()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalityPredicates.cpp | 47 std::pair<LLT, LLT> Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1]}; in typePairInSet() local 48 return llvm::is_contained(Types, Match); in typePairInSet() 57 TypePairAndMemDesc Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1], in typePairAndMemDescInSet() local 62 return Match.isCompatible(Entry); in typePairAndMemDescInSet()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | weak | 9 # - Match against very wide range of values 10 # - Match against generic word in some spoken languages (e.g. English)
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | X86FoldTablesEmitter.cpp | 697 auto Match = in run() local 699 if (Match != OpcRegInsts.end()) { in run() 700 updateTables(FixUp(*Match), MemInst); in run() 701 OpcRegInsts.erase(Match); in run() 713 Match = find_if(OpcRegInstsForBroadcast, in run() 715 if (Match != OpcRegInstsForBroadcast.end()) { in run() 716 updateTables(FixUp(*Match), MemInst, 0, /*IsManual=*/false, in run() 718 OpcRegInstsForBroadcast.erase(Match); in run()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 1323 if (const char *Match = matchFlagWithArg("rsp-quoting", ArgIt, ArgsArr)) { in getRspQuoting() local 1324 StringRef MatchRef = Match; in getRspQuoting() 1330 fail(std::string("Invalid response file quoting style ") + Match); in getRspQuoting() 1353 const char *Match = nullptr; in ar_main() local 1382 Match = matchFlagWithArg("format", ArgIt, Argv); in ar_main() 1383 if (Match) { in ar_main() 1384 FormatType = StringSwitch<Format>(Match) in ar_main() 1393 fail(std::string("Invalid format ") + Match); in ar_main() 1397 if ((Match = matchFlagWithArg("output", ArgIt, Argv))) { in ar_main() 1398 OutputDir = Match; in ar_main() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_diag.cpp | 426 return suppression_ctx->Match(TypeName, kVptrCheck, &s); in IsVptrCheckSuppressed() 439 if (Filename != nullptr && suppression_ctx->Match(Filename, SuppType, &s)) in IsPCSuppressed() 443 if (suppression_ctx->Match(Module, SuppType, &s)) in IsPCSuppressed() 449 return suppression_ctx->Match(AI.function, SuppType, &s) || in IsPCSuppressed() 450 suppression_ctx->Match(AI.file, SuppType, &s); in IsPCSuppressed()
|