Home
last modified time | relevance | path

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

12345678

/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
41 Match host a
44 Match host b
[all …]
H A Dcfginclude.sh10 Match host a
17 Match host c
21 Match host m
44 Match host a
47 Match host b
64 Match host a
67 Match host b
70 Match host c
82 Match all
132 Match host x
[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.cpp50 auto NodeOrErr = getNode(Match.Nodes, Id); 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()
149 return printNode(Id, Match, Result); in eval()
223 auto RawRange = Selector(Match); in eval()
227 *RawRange, *Match.SourceManager, Match.Context->getLangOpts()); in eval()
287 return Member->eval(Match, Result); in eval()
309 auto &M = Match.Nodes.getMap(); in eval()
311 ->eval(Match, Result); in eval()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVOptions.cpp410 LVMatch Match; in createMatchEntry() local
418 if (!Match.RE->isValid(Error)) in createMatchEntry()
423 Match.Mode = LVMatchMode::Regex; in createMatchEntry()
424 Filters.push_back(Match); 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()
467 for (LVMatch &Match : Filters) in addPatterns()
469 << (Match.Mode == LVMatchMode::Match ? "Match" : "Regex") in addPatterns()
513 switch (Match.Mode) { in matchPattern()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp111 if (!Match) { 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()
141 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
148 if (!Match) { 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()
H A DPointerIterationChecker.cpp35 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 DPointerSortingChecker.cpp35 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()
H A DGCDAntipatternChecker.cpp213 for (BoundNodes Match : Matches) in checkASTCodeBody() local
214 emitDiagnostics(Match, "semaphore", BR, ADC, this); in checkASTCodeBody()
218 for (BoundNodes Match : Matches) in checkASTCodeBody() local
219 emitDiagnostics(Match, "group", BR, ADC, this); in checkASTCodeBody()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DStringMatcher.cpp36 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/Format/
H A DMatchFilePath.cpp90 bool Match = false; in matchFilePath() local
93 Match = Pattern[I] <= F && F <= Pattern[I + 2]; in matchFilePath()
96 Match = F == Pattern[I++]; in matchFilePath()
98 } while (!Match && I < K); in matchFilePath()
99 if (Negated ? Match : !Match) in matchFilePath()
/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()
409 return Match; in matchesType()
427 return Match; in matchesType()
521 return Match; in matchesType()
542 return Match; in matchesType()
553 return Match; in matchesType()
560 return Match; in matchesType()
571 return Match; in matchesType()
[all …]
/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()
79 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s)) in IsStackTraceSuppressed()
93 if (suppression_ctx->Match(function_name, kInterceptorViaFunction, in IsStackTraceSuppressed()
/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/clang/utils/TableGen/
H A DClangCommentHTMLTagsEmitter.cpp45 StringMatcher::StringPair Match(Spelling, "return true;"); in EmitClangCommentHTMLTagsProperties() local
47 MatchesEndTagOptional.push_back(Match); in EmitClangCommentHTMLTagsProperties()
49 MatchesEndTagForbidden.push_back(Match); in EmitClangCommentHTMLTagsProperties()
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp69 StringMatcher::StringPair Match(Spelling, std::string(CLiteral)); in EmitClangCommentHTMLNamedCharacterReferences() local
70 NameToUTF8.push_back(Match); in EmitClangCommentHTMLNamedCharacterReferences()
/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/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h171 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/file/magic/Magdir/
H A Dweak8 # - Match against very wide range of values
9 # - Match against generic word in some spoken languages (e.g. English)
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DMultilib.cpp141 std::string RegexString(M.Match); in expandFlags()
144 if (!StringRef(M.Match).starts_with("^")) in expandFlags()
146 if (!StringRef(M.Match).ends_with("$")) in expandFlags()
234 io.mapRequired("Match", M.Match); in mapping()
238 llvm::Regex Regex(M.Match); in validate()
/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 TypePairAndMemDesc Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1], in typePairAndMemDescInSet() local
62 return Match.isCompatible(Entry); in typePairAndMemDescInSet()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUIGroupLP.cpp523 auto Match = llvm::find_if( in removeEdges() local
600 assert(Match); in populateReadyList()
603 if (Match->isFull()) { in populateReadyList()
660 SchedGroup *Match; in solveExact() local
663 Match = &SG; in solveExact()
666 if (Match->isFull()) in solveExact()
675 Match->add(*CurrSU.first); in solveExact()
695 Match->pop(); in solveExact()
745 assert(Match); in greedyFind()
750 if (Match->isFull()) { in greedyFind()
[all …]

12345678