Home
last modified time | relevance | path

Searched refs:Match (Results 1 – 25 of 208) sorted by relevance

123456789

/freebsd/crypto/openssh/regress/
H A Dservcfginclude.sh7 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 Dcfginclude.sh10 Match host a
13 Match host=b # comment
17 Match host c
21 Match host=m !user xxxyfake
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 !user blahblahfake
[all …]
H A Dmatch-subsystem.sh40 Match all
48 Match all
57 Match user *
65 Match user *
68 Match all
77 Match all
86 Match user *
H A Daddrmatch.sh25 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 DStencil.cpp45 static Error printNode(StringRef Id, const MatchFinder::MatchResult &Match, in printNode() argument
49 auto NodeOrErr = getNode(Match.Nodes, Id); in printNode()
52 const PrintingPolicy PP(Match.Context->getLangOpts()); in printNode()
80 Error eval(const MatchFinder::MatchResult &Match, in eval() argument
98 Error eval(const MatchFinder::MatchResult &Match, in eval() argument
100 return printNode(Id, Match, Result); in eval()
148 Error eval(const MatchFinder::MatchResult &Match, in eval() argument
153 return printNode(Id, Match, Result); in eval()
155 const auto *E = Match.Nodes.getNodeAs<Expr>(Id); in eval()
162 Source = tooling::buildParens(*E, *Match.Context); in eval()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVOptions.cpp412 LVMatch Match; in createMatchEntry() local
415 Match.Pattern = std::string(Pattern); in createMatchEntry()
417 Match.RE = std::make_shared<Regex>(Pattern, IgnoreCase ? Regex::IgnoreCase in createMatchEntry()
420 if (!Match.RE->isValid(Error)) in createMatchEntry()
425 Match.Mode = LVMatchMode::Regex; in createMatchEntry()
426 Filters.push_back(Match); in createMatchEntry()
432 Match.Pattern = std::string(Pattern); in createMatchEntry()
433 if (Match.Pattern.size()) { in createMatchEntry()
434 Match.Mode = IgnoreCase ? LVMatchMode::NoCase : LVMatchMode::Match; in createMatchEntry()
435 Filters.push_back(Match); in createMatchEntry()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp96 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY() local
100 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
103 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
107 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
111 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)), in INITIALIZE_PASS_DEPENDENCY()
113 if (Match && NoSR0) in INITIALIZE_PASS_DEPENDENCY()
116 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
120 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
123 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
127 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 DRunLoopAutoreleaseLeakChecker.cpp80 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 DObjCAutoreleaseWriteChecker.cpp111 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()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DStringMatcher.cpp34 for (const StringMatcher::StringPair *Match : Matches.drop_front()) in FindFirstNonCommonLetter() local
35 if (Match->first[Idx] != Letter) in FindFirstNonCommonLetter()
77 for (const StringPair *Match : Matches) in EmitStringMatcherForChar() local
78 MatchesByLetter[Match->first[CharNo]].push_back(Match); in EmitStringMatcherForChar()
136 for (const StringPair &Match : Matches) in Emit() local
137 MatchesByLength[Match.first.size()].push_back(&Match); in Emit()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DMatchFilePath.cpp104 bool Match = false; in matchFilePath() local
107 Match = Pattern[I] <= F && F <= Pattern[I + 2]; in matchFilePath()
110 Match = F == Pattern[I++]; in matchFilePath()
112 } while (!Match && I < K); in matchFilePath()
113 if (Negated ? Match : !Match) in matchFilePath()
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DLibrary.cpp17 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 DHeaderFile.cpp73 bool Match = Rule.match(Header.getPath()); in match() local
74 if (Match) in match()
76 return Match; in match()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp349 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()
526 return Match; in matchesType()
533 return Match; in matchesType()
540 return Match; in matchesType()
551 return Match; in matchesType()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp98 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/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp50 return suppression_ctx->Match(interceptor_name, kInterceptorName, &s); in IsInterceptorSuppressed()
63 return suppression_ctx->Match(global_var_name, kODRViolation, &s); in IsODRViolationSuppressed()
81 if (suppression_ctx->Match(function_name, suppression, &s)) { in IsAddrSuppressed()
117 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s)) in IsStackTraceSuppressed()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangCommentHTMLTagsEmitter.cpp46 StringMatcher::StringPair Match(Spelling, "return true;"); in EmitClangCommentHTMLTagsProperties() local
48 MatchesEndTagOptional.push_back(Match); in EmitClangCommentHTMLTagsProperties()
50 MatchesEndTagForbidden.push_back(Match); in EmitClangCommentHTMLTagsProperties()
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp65 StringMatcher::StringPair Match(Spelling, std::string(CLiteral)); in EmitClangCommentHTMLNamedCharacterReferences() local
66 NameToUTF8.push_back(Match); in EmitClangCommentHTMLNamedCharacterReferences()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalityPredicates.cpp47 std::pair<LLT, LLT> Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1]}; in typePairInSet() local
48 return llvm::is_contained(Types, Match); in typePairInSet()
57 std::tuple<LLT, LLT, LLT> Match = { in typeTupleInSet() local
59 return llvm::is_contained(Types, Match); in typeTupleInSet()
68 TypePairAndMemDesc Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1], in typePairAndMemDescInSet() local
73 return Match.isCompatible(Entry); in typePairAndMemDescInSet()
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/
H A Dnsan_suppressions.cpp47 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 DNSDictionary.h46 virtual bool Match(ConstString class_name) = 0;
54 bool Match(ConstString class_name) override;
63 bool Match(ConstString class_name) override;
/freebsd/contrib/file/magic/Magdir/
H A Dweak9 # - Match against very wide range of values
10 # - Match against generic word in some spoken languages (e.g. English)
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DMemoryUnsafeCastChecker.cpp133 for (BoundNodes Match : Matches) in checkASTCodeBody() local
134 emitDiagnostics(Match, BR, ADC, this, BT); in checkASTCodeBody()
178 for (BoundNodes Match : MatchesUnrelatedTypes) in checkASTCodeBody() local
179 emitDiagnosticsUnrelated(Match, BR, ADC, this, BT); in checkASTCodeBody()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopWidening.cpp56 for (BoundNodes Match : Matches) { in getWidenedLoopState() local
57 const VarDecl *VD = Match.getNodeAs<VarDecl>(MatchRef); in getWidenedLoopState()
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/
H A Drtsan_suppressions.cpp89 if (suppression_ctx->Match(function_name, call_stack_flag, &s)) in IsStackTraceSuppressed()
106 return suppression_ctx->Match(function_name, flag_name, &s); in IsFunctionSuppressed()

123456789