Home
last modified time | relevance | path

Searched refs:Req (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIChecker.cpp41 const Request *const Req = State->get<RequestMap>(MR); in checkDoubleNonblocking() local
44 if (Req && Req->CurrentState == Request::State::Nonblocking) { in checkDoubleNonblocking()
46 BReporter.reportDoubleNonblocking(PreCallEvent, *Req, MR, ErrorNode, in checkDoubleNonblocking()
81 const Request *const Req = State->get<RequestMap>(ReqRegion); in checkUnmatchedWaits() local
83 if (!Req) { in checkUnmatchedWaits()
112 for (const auto &Req : ReqMap) { in checkMissingWaits() local
113 if (!SymReaper.isLiveRegion(Req.first)) { in checkMissingWaits()
114 if (Req.second.CurrentState == Request::State::Nonblocking) { in checkMissingWaits()
120 BReporter.reportMissingWait(Req.second, Req.first, ErrorNode, in checkMissingWaits()
123 State = State->remove<RequestMap>(Req.first); in checkMissingWaits()
H A DMPIBugReporter.cpp24 const CallEvent &MPICallEvent, const ento::mpi::Request &Req, in reportDoubleNonblocking() argument
50 const ento::mpi::Request &Req, const MemRegion *const RequestRegion, in reportMissingWait() argument
95 const Request *const Req = N->getState()->get<RequestMap>(RequestRegion); in VisitNode() local
96 assert(Req && "The region must be tracked and alive, given that we've " in VisitNode()
102 if (!PrevReq || (Req->CurrentState != PrevReq->CurrentState)) { in VisitNode()
H A DMPIBugReporter.h43 const Request &Req,
54 void reportMissingWait(const Request &Req,
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dsetchgpw2.asn135 Req-null ::= NULL
40 Req-change-pw ::= SEQUENCE {
68 Req-set-keys ::= SEQUENCE {
97 Req-get-pw-policy ::= NULL
109 Req-get-princ-aliases ::= NULL
124 Req-get-supported-etypes ::= NULL
133 null[0] Req-null,
134 change-pw[1] Req-change-pw,
135 set-keys[2] Req-set-keys,
136 get-pw-policy[3] Req-get-pw-policy,
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaConcept.cpp410 concepts::ExprRequirement *Req, in diagnoseUnsatisfiedRequirement() argument
412 assert(!Req->isSatisfied() in diagnoseUnsatisfiedRequirement()
414 switch (Req->getSatisfactionStatus()) { in diagnoseUnsatisfiedRequirement()
419 auto *SubstDiag = Req->getExprSubstitutionDiagnostic(); in diagnoseUnsatisfiedRequirement()
432 S.Diag(Req->getNoexceptLoc(), in diagnoseUnsatisfiedRequirement()
434 << (int)First << Req->getExpr(); in diagnoseUnsatisfiedRequirement()
438 Req->getReturnTypeRequirement().getSubstitutionDiagnostic(); in diagnoseUnsatisfiedRequirement()
452 Req->getReturnTypeRequirementSubstitutedConstraintExpr(); in diagnoseUnsatisfiedRequirement()
456 Expr *e = Req->getExpr(); in diagnoseUnsatisfiedRequirement()
475 concepts::TypeRequirement *Req, in diagnoseUnsatisfiedRequirement() argument
[all …]
H A DSemaTemplateInstantiate.cpp381 concepts::Requirement *Req, sema::TemplateDeductionInfo &DeductionInfo, in InstantiatingTemplate() argument
391 concepts::NestedRequirement *Req, ConstraintsCheck, in InstantiatingTemplate() argument
1145 for (concepts::Requirement *Req : Reqs) { in TransformRequiresExprRequirements()
1148 if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) in TransformRequiresExprRequirements()
1150 else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) in TransformRequiresExprRequirements()
1154 cast<concepts::NestedRequirement>(Req)); in TransformRequiresExprRequirements()
1165 TransReq = Req; in TransformRequiresExprRequirements()
1182 TransformTypeRequirement(concepts::TypeRequirement *Req);
1184 TransformExprRequirement(concepts::ExprRequirement *Req);
1186 TransformNestedRequirement(concepts::NestedRequirement *Req);
[all …]
H A DTreeTransform.h533 TransformTypeRequirement(concepts::TypeRequirement *Req);
535 TransformExprRequirement(concepts::ExprRequirement *Req);
537 TransformNestedRequirement(concepts::NestedRequirement *Req);
12245 for (concepts::Requirement *Req : TransReqs) { in TransformRequiresExpr()
12246 if (auto *ER = dyn_cast<concepts::ExprRequirement>(Req)) { in TransformRequiresExpr()
12264 for (concepts::Requirement *Req : Reqs) { in TransformRequiresExprRequirements()
12266 if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) in TransformRequiresExprRequirements()
12268 else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) in TransformRequiresExprRequirements()
12272 cast<concepts::NestedRequirement>(Req)); in TransformRequiresExprRequirements()
12283 concepts::TypeRequirement *Req) { in TransformTypeRequirement() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/FileCheck/
H A DFileCheck.cpp531 static void DumpAnnotatedInput(raw_ostream &OS, const FileCheckRequest &Req, in DumpAnnotatedInput() argument
653 if (Req.Verbose && TheColorMode == ColorMode::Enable) { in DumpAnnotatedInput()
668 if (Req.Verbose) in DumpAnnotatedInput()
766 FileCheckRequest Req; in main() local
767 append_range(Req.CheckPrefixes, CheckPrefixes); in main()
769 append_range(Req.CommentPrefixes, CommentPrefixes); in main()
771 append_range(Req.ImplicitCheckNot, ImplicitCheckNot); in main()
788 Req.GlobalDefines.push_back(G); in main()
793 Req.AllowEmptyInput = AllowEmptyInput; in main()
794 Req.AllowUnusedPrefixes = AllowUnusedPrefixes; in main()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheck.cpp917 SourceMgr &SM, const FileCheckRequest &Req) { in parsePattern() argument
918 bool MatchFullLinesHere = Req.MatchFullLines && CheckTy != Check::CheckNot; in parsePattern()
919 IgnoreCase = Req.IgnoreCase; in parsePattern()
923 if (!(Req.NoCanonicalizeWhiteSpace && Req.MatchFullLines)) in parsePattern()
965 if (!Req.NoCanonicalizeWhiteSpace) in parsePattern()
1195 if (!Req.NoCanonicalizeWhiteSpace) in parsePattern()
1587 if (Req.NoCanonicalizeWhiteSpace || (*Ptr != ' ' && *Ptr != '\t')) { in CanonicalizeFile()
1678 FindCheckType(const FileCheckRequest &Req, StringRef Buffer, StringRef Prefix) { in FindCheckType() argument
1684 if (llvm::is_contained(Req.CommentPrefixes, Prefix)) { in FindCheckType()
1795 FindFirstMatchingPrefix(const FileCheckRequest &Req, Regex &PrefixRE, in FindFirstMatchingPrefix() argument
[all …]
H A DFileCheckImpl.h733 const FileCheckRequest &Req);
884 size_t &MatchLen, FileCheckRequest &Req,
898 const FileCheckRequest &Req,
903 const FileCheckRequest &Req,
/netbsd-src/tests/ipf/input/
H A Dni1476 # 23:18:36.349759 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:0 ppp: LCP 25: Conf-Req(0), M…
94 # 23:18:36.555363 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:0 ppp: LCP 24: Conf-Req(1), A…
114 # 23:18:36.557764 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:2 ppp: LCP 22: Conf-Req(1), M…
128 # 23:18:36.564803 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), …
171 # 23:18:36.588721 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:5 A:5 ppp: CCP 12: Conf-Req(…
177 # 23:18:36.589445 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:6 A:5 ppp: CCP 6: Conf-Req(1)
189 # 23:18:36.590023 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:6 A:7 ppp: IPCP 36: Conf-Req
211 # 23:18:36.593819 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:9 A:7 ppp: IPCP 12: Conf-Req
223 # 23:18:36.595525 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:9 ppp: CCP 18: Term-Req(6)
H A Dni1576 # 23:18:36.349759 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:0 ppp: LCP 25: Conf-Req(0), M…
94 # 23:18:36.555363 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:0 ppp: LCP 24: Conf-Req(1), A…
114 # 23:18:36.557764 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:2 ppp: LCP 22: Conf-Req(1), M…
128 # 23:18:36.564803 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), …
171 # 23:18:36.588721 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:5 A:5 ppp: CCP 12: Conf-Req(…
177 # 23:18:36.589445 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:6 A:5 ppp: CCP 6: Conf-Req(1)
189 # 23:18:36.590023 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:6 A:7 ppp: IPCP 36: Conf-Req
211 # 23:18:36.593819 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:9 A:7 ppp: IPCP 12: Conf-Req
223 # 23:18:36.595525 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:9 ppp: CCP 18: Term-Req(6)
H A Dni1676 # 23:18:36.349759 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:0 ppp: LCP 25: Conf-Req(0), M…
94 # 23:18:36.555363 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:0 ppp: LCP 24: Conf-Req(1), A…
114 # 23:18:36.557764 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:2 ppp: LCP 22: Conf-Req(1), M…
128 # 23:18:36.564803 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), …
171 # 23:18:36.588721 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:5 A:5 ppp: CCP 12: Conf-Req(…
177 # 23:18:36.589445 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:6 A:5 ppp: CCP 6: Conf-Req(1)
189 # 23:18:36.590023 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:6 A:7 ppp: IPCP 36: Conf-Req
211 # 23:18:36.593819 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:9 A:7 ppp: IPCP 12: Conf-Req
223 # 23:18:36.595525 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:9 ppp: CCP 18: Term-Req(6)
H A Dni1374 # 23:18:36.349759 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:0 ppp: LCP 25: Conf-Req(0), M…
91 # 23:18:36.555363 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:0 ppp: LCP 24: Conf-Req(1), A…
110 # 23:18:36.557764 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:2 ppp: LCP 22: Conf-Req(1), M…
124 # 23:18:36.564803 192.168.113.3 > 192.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), …
167 # 23:18:36.588721 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:5 A:5 ppp: CCP 12: Conf-Req(…
173 # 23:18:36.589445 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:6 A:5 ppp: CCP 6: Conf-Req(1)
185 # 23:18:36.590023 192.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:6 A:7 ppp: IPCP 36: Conf-Req
207 # 23:18:36.593819 192.168.113.3 > 192.168.113.1: gre [KSAv1] ID:4000 S:9 A:7 ppp: IPCP 12: Conf-Req
219 # 23:18:36.595525 192.168.113.1 > 192.168.113.3: gre [KSv1] ID:0000 S:9 ppp: CCP 18: Term-Req(6)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/FileCheck/
H A DFileCheck.h178 FileCheckRequest Req; variable
184 explicit FileCheck(FileCheckRequest Req);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp128 void set(Requirement Req) { Reqs.insert(Req); } in set() argument
129 bool has(Requirement Req) const { return Reqs.count(Req) > 0; } in has()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DModule.cpp131 const TargetInfo &Target, Requirement &Req, in isUnimportable() argument
144 Req = Current->Requirements[I]; in isUnimportable()
154 Requirement &Req, in isAvailable() argument
160 if (isUnimportable(LangOpts, Target, Req, ShadowingModule)) in isAvailable()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DTypoCorrection.h249 void setRequiresImport(bool Req) { RequiresImport = Req; } in setRequiresImport() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseExprCXX.cpp3440 concepts::Requirement *Req = nullptr; in ParseRequiresExpression() local
3444 Req = Actions.ActOnCompoundRequirement(Expression.get(), NoexceptLoc); in ParseRequiresExpression()
3445 if (Req) in ParseRequiresExpression()
3446 Requirements.push_back(Req); in ParseRequiresExpression()
3471 Req = Actions.ActOnCompoundRequirement( in ParseRequiresExpression()
3475 if (Req) in ParseRequiresExpression()
3476 Requirements.push_back(Req); in ParseRequiresExpression()
3537 if (auto *Req = in ParseRequiresExpression() local
3539 Requirements.push_back(Req); in ParseRequiresExpression()
3583 if (auto *Req = Actions.ActOnTypeRequirement(TypenameKWLoc, SS, in ParseRequiresExpression() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DModule.h439 Requirement &Req, Module *&ShadowingModule) const;
464 Requirement &Req,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprConcepts.h349 ReturnTypeRequirement Req, SatisfactionStatus Status,
362 SourceLocation NoexceptLoc, ReturnTypeRequirement Req = {});
H A DRecursiveASTVisitor.h2762 for (concepts::Requirement *Req : S->getRequirements())
2763 if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) {
2766 } else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) {
2774 auto *NestedReq = cast<concepts::NestedRequirement>(Req);
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtProfile.cpp1491 for (concepts::Requirement *Req : S->getRequirements()) { in VisitRequiresExpr()
1492 if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) { in VisitRequiresExpr()
1497 } else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) { in VisitRequiresExpr()
1520 auto *NestedReq = cast<concepts::NestedRequirement>(Req); in VisitRequiresExpr()
H A DStmtPrinter.cpp2312 for (concepts::Requirement *Req : Requirements) { in VisitRequiresExpr()
2313 if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) { in VisitRequiresExpr()
2318 } else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) { in VisitRequiresExpr()
2339 auto *NestedReq = cast<concepts::NestedRequirement>(Req); in VisitRequiresExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp868 llvm::Optional<concepts::ExprRequirement::ReturnTypeRequirement> Req; in VisitRequiresExpr() local
872 Req.emplace(); in VisitRequiresExpr()
878 Req.emplace(); in VisitRequiresExpr()
887 Req.emplace(TPL); in VisitRequiresExpr()
891 Req.emplace(readSubstitutionDiagnostic(Record)); in VisitRequiresExpr()
898 std::move(*Req), Status, SubstitutedConstraintExpr); in VisitRequiresExpr()
903 std::move(*Req)); in VisitRequiresExpr()

12