Home
last modified time | relevance | path

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

1234567891011

/openbsd-src/regress/usr.bin/ssh/
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 hos
[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 hos
[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
/openbsd-src/gnu/llvm/clang/lib/Tooling/Transformer/
H A DStencil.cpp46 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 …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVOptions.cpp410 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 …]
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp107 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 …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DFormatString.cpp349 return Match; in matchesType()
370 return Match; in matchesType()
403 return Match; in matchesType()
418 return Match; in matchesType()
422 return Match; in matchesType()
426 return Match; in matchesType()
430 return Match; in matchesType()
434 return Match; in matchesType()
438 return Match; in matchesType()
442 return Match; in matchesType()
[all …]
/openbsd-src/sys/arch/hppa/hppa/
H A Ddb_disasm.c964 #define Match(s) (strncmp(s,i->mnem,sizeof(s)-1) == 0) macro
1312 if (Match("dcor") || Match("idcor"))
1326 if (Match("addi"))
1342 if (Match("vshd"))
1553 if (Rsb(w) == 0 && Match("ldo")) {
1701 if (link && !Match("gate"))
1709 if (link || Match("gate"))
1770 if (Match("movb"))
1772 else if (Match("addb"))
1790 if (Match("movib"))
[all …]
/openbsd-src/gnu/usr.bin/perl/
H A Dregcomp.sym56 SBOL BOL, no ; Match "" at beginning of line: /^/, /\A/
60 SEOL EOL, no ; Match "" at end of line: /$/
62 EOS EOL, no ; Match "" at end of string: /\z/
64 #* Match Start Anchors:
75 BOUNDU BOUND, no ; Match "" at any boundary of a given type using /u rules.
76 BOUNDA BOUND, no ; Match "" at any boundary between \w\W or \W\w, where \w is [_a-…
80 NBOUNDU NBOUND, no ; Match "" at any non-boundary of a given type using using /u rul…
81 NBOUNDA NBOUND, no ; Match "" betweeen any \w\w or \W\W, where \w is [_a-zA-Z0-9]
84 REG_ANY REG_ANY, no 0 S ; Match any one character (except newline).
85 SANY REG_ANY, no 0 S ; Match any one character.
[all …]
/openbsd-src/gnu/llvm/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()
92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction, in IsStackTraceSuppressed()
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp96 if (suppression_ctx->Match(info.function, stype, sp) || in IsSuppressed()
97 suppression_ctx->Match(info.file, stype, sp) || in IsSuppressed()
98 suppression_ctx->Match(info.module, stype, sp)) { in IsSuppressed()
135 if (suppression_ctx->Match(global.name, stype, &s) || in IsSuppressed()
136 suppression_ctx->Match(global.module, stype, &s)) { in IsSuppressed()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUIGroupLP.cpp429 auto Match = llvm::find_if( in removeEdges() local
431 if (Match != Succ->Preds.end()) { in removeEdges()
432 assert(Match->isArtificial()); in removeEdges()
433 Succ->removePred(*Match); in removeEdges()
502 SchedGroup *Match; in populateReadyList() local
505 Match = &SG; in populateReadyList()
509 if (Match->isFull()) { in populateReadyList()
563 SchedGroup *Match; in solveExact() local
566 Match = &SG; in solveExact()
569 if (Match->isFull()) in solveExact()
[all …]
/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlreref.pod123 [amy] Match 'a', 'm' or 'y'
147 \pP Match P-named (Unicode) property
148 \p{...} Match Unicode property with name longer than 1 character
149 \PP Match non-P
150 \P{...} Match lack of Unicode property with name longer than 1 char
151 \X Match Unicode extended grapheme cluster
198 ^ Match string start (or line, if /m is used)
199 $ Match string end (or line, if /m is used) or before newline
200 \b{} Match boundary of type specified within the braces
201 \B{} Match whereve
[all...]
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h134 Match, enumerator
168 explicit DiagnosticPredicate(bool Match) in DiagnosticPredicate()
169 : Type(Match ? DiagnosticPredicateTy::Match in DiagnosticPredicate()
175 operator bool() const { return Type == DiagnosticPredicateTy::Match; }
176 bool isMatch() const { return Type == DiagnosticPredicateTy::Match; } in isMatch()
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/
H A D01misc.t213 is whatIsInput(*FH), 'handle', "Match filehandle" ;
217 is whatIsInput($stdin), 'handle', "Match '-' as stdin";
220 is whatIsInput("abc"), 'filename', "Match filename";
221 is whatIsInput(\"abc"), 'buffer', "Match buffer";
222 is whatIsInput(sub { 1 }, 1), 'code', "Match code";
232 is whatIsOutput(*FH), 'handle', "Match filehandle" ;
236 is whatIsOutput($stdout), 'handle', "Match '-' as stdout";
239 is whatIsOutput("abc"), 'filename', "Match filename";
240 is whatIsOutput(\"abc"), 'buffer', "Match buffer";
241 is whatIsOutput(sub { 1 }, 1), 'code', "Match cod
[all...]
/openbsd-src/gnu/llvm/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()

1234567891011