OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Req
(Results
1 - 22
of
22
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIChecker.cpp
41
const Request *const
Req
= State->get<RequestMap>(MR);
44
if (
Req
&&
Req
->CurrentState == Request::State::Nonblocking) {
46
BReporter.reportDoubleNonblocking(PreCallEvent, *
Req
, MR, ErrorNode,
81
const Request *const
Req
= State->get<RequestMap>(ReqRegion);
83
if (!
Req
) {
112
for (const auto &
Req
: ReqMap) {
113
if (!SymReaper.isLiveRegion(
Req
.first)) {
114
if (
Req
.second.CurrentState == Request::State::Nonblocking) {
120
BReporter.reportMissingWait(
Req
.second, Req.first, ErrorNode
[
all
...]
MPIBugReporter.cpp
24
const CallEvent &MPICallEvent, const ento::mpi::Request &
Req
,
50
const ento::mpi::Request &
Req
, const MemRegion *const RequestRegion,
95
const Request *const
Req
= N->getState()->get<RequestMap>(RequestRegion);
96
assert(
Req
&& "The region must be tracked and alive, given that we've "
102
if (!PrevReq || (
Req
->CurrentState != PrevReq->CurrentState)) {
MPIBugReporter.h
38
/// \param
Req
request that was used by two nonblocking calls in sequence
43
const Request &
Req
,
50
/// \param
Req
request that is not matched by a wait
54
void reportMissingWait(const Request &
Req
,
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp
410
concepts::ExprRequirement *
Req
,
412
assert(!
Req
->isSatisfied()
414
switch (
Req
->getSatisfactionStatus()) {
419
auto *SubstDiag =
Req
->getExprSubstitutionDiagnostic();
432
S.Diag(
Req
->getNoexceptLoc(),
434
<< (int)First <<
Req
->getExpr();
438
Req
->getReturnTypeRequirement().getSubstitutionDiagnostic();
452
Req
->getReturnTypeRequirementSubstitutedConstraintExpr();
456
Expr *e =
Req
->getExpr();
475
concepts::TypeRequirement *
Req
,
[
all
...]
SemaTemplateInstantiate.cpp
381
concepts::Requirement *
Req
, sema::TemplateDeductionInfo &DeductionInfo,
391
concepts::NestedRequirement *
Req
, ConstraintsCheck,
1145
for (concepts::Requirement *
Req
: Reqs) {
1148
if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(
Req
))
1150
else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(
Req
))
1154
cast<concepts::NestedRequirement>(
Req
));
1158
// [expr.prim.
req
]p6
1165
TransReq =
Req
;
1182
TransformTypeRequirement(concepts::TypeRequirement *
Req
);
1184
TransformExprRequirement(concepts::ExprRequirement *
Req
);
[
all
...]
TreeTransform.h
533
TransformTypeRequirement(concepts::TypeRequirement *
Req
);
535
TransformExprRequirement(concepts::ExprRequirement *
Req
);
537
TransformNestedRequirement(concepts::NestedRequirement *
Req
);
12218
// C++2a [expr.prim.
req
]p2
12245
for (concepts::Requirement *
Req
: TransReqs) {
12246
if (auto *ER = dyn_cast<concepts::ExprRequirement>(
Req
)) {
12264
for (concepts::Requirement *
Req
: Reqs) {
12266
if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(
Req
))
12268
else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(
Req
))
12272
cast<concepts::NestedRequirement>(
Req
));
[
all
...]
SemaCodeComplete.cpp
4989
for (const concepts::Requirement *
Req
: RE->getRequirements()) {
4990
if (!
Req
->isDependent())
4992
// Now
Req
cannot a substitution-error: those aren't dependent.
4994
if (auto *TR = dyn_cast<concepts::TypeRequirement>(
Req
)) {
4998
} else if (auto *ER = dyn_cast<concepts::ExprRequirement>(
Req
)) {
5009
} else if (auto *NR = dyn_cast<concepts::NestedRequirement>(
Req
)) {
/src/external/apache2/llvm/dist/llvm/utils/FileCheck/
FileCheck.cpp
531
static void DumpAnnotatedInput(raw_ostream &OS, const FileCheckRequest &
Req
,
653
if (
Req
.Verbose && TheColorMode == ColorMode::Enable) {
668
if (
Req
.Verbose)
766
FileCheckRequest
Req
;
767
append_range(
Req
.CheckPrefixes, CheckPrefixes);
769
append_range(
Req
.CommentPrefixes, CommentPrefixes);
771
append_range(
Req
.ImplicitCheckNot, ImplicitCheckNot);
788
Req
.GlobalDefines.push_back(G);
793
Req
.AllowEmptyInput = AllowEmptyInput;
794
Req
.AllowUnusedPrefixes = AllowUnusedPrefixes
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/FileCheck/
FileCheck.h
178
FileCheckRequest
Req
;
184
explicit FileCheck(FileCheckRequest
Req
);
/src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp
917
SourceMgr &SM, const FileCheckRequest &
Req
) {
918
bool MatchFullLinesHere =
Req
.MatchFullLines && CheckTy != Check::CheckNot;
919
IgnoreCase =
Req
.IgnoreCase;
923
if (!(
Req
.NoCanonicalizeWhiteSpace &&
Req
.MatchFullLines))
965
if (!
Req
.NoCanonicalizeWhiteSpace)
1195
if (!
Req
.NoCanonicalizeWhiteSpace)
1587
if (
Req
.NoCanonicalizeWhiteSpace || (*Ptr != ' ' && *Ptr != '\t')) {
1678
FindCheckType(const FileCheckRequest &
Req
, StringRef Buffer, StringRef Prefix) {
1684
if (llvm::is_contained(
Req
.CommentPrefixes, Prefix))
[
all
...]
FileCheckImpl.h
728
/// \p Prefix provides which prefix is being matched, \p
Req
describes the
733
const FileCheckRequest &
Req
);
884
size_t &MatchLen, FileCheckRequest &
Req
,
895
/// \p Diags according to the verbosity level set in \p
Req
.
898
const FileCheckRequest &
Req
,
903
const FileCheckRequest &
Req
,
/src/external/apache2/llvm/dist/clang/lib/Basic/
Module.cpp
131
const TargetInfo &Target, Requirement &
Req
,
144
Req
= Current->Requirements[I];
154
Requirement &
Req
,
160
if (isUnimportable(LangOpts, Target,
Req
, ShadowingModule))
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
DebugObjectManagerPlugin.cpp
128
void set(Requirement
Req
) { Reqs.insert(
Req
); }
129
bool has(Requirement
Req
) const { return Reqs.count(
Req
) > 0; }
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
TypoCorrection.h
249
void setRequiresImport(bool
Req
) { RequiresImport =
Req
; }
Sema.h
8940
concepts::Requirement *
Req
,
8947
concepts::NestedRequirement *
Req
, ConstraintsCheck,
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprConcepts.h
345
/// \param
Req
the requirement for the type of the checked expression.
349
ReturnTypeRequirement
Req
, SatisfactionStatus Status,
359
/// \param
Req
the requirement for the type of the checked expression (omit
362
SourceLocation NoexceptLoc, ReturnTypeRequirement
Req
= {});
469
/// C++2a [expr.prim.
req
]:
RecursiveASTVisitor.h
2762
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
);
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h
432
/// \param
Req
If this module is unimportable because of a missing
439
Requirement &
Req
, Module *&ShadowingModule) const;
453
/// \param
Req
If this module is unavailable because of a missing requirement,
464
Requirement &
Req
,
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp
3341
/// C++2a [expr.prim.
req
]p1
3397
// C++2a [expr.prim.
req
]p2
3420
// C++ [expr.prim.
req
.compound]
3440
concepts::Requirement *
Req
= nullptr;
3444
Req
= Actions.ActOnCompoundRequirement(Expression.get(), NoexceptLoc);
3445
if (
Req
)
3446
Requirements.push_back(
Req
);
3471
Req
= Actions.ActOnCompoundRequirement(
3475
if (
Req
)
3476
Requirements.push_back(
Req
);
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
868
llvm::Optional<concepts::ExprRequirement::ReturnTypeRequirement>
Req
;
872
Req
.emplace();
878
Req
.emplace();
887
Req
.emplace(TPL);
891
Req
.emplace(readSubstitutionDiagnostic(Record));
898
std::move(*
Req
), Status, SubstitutedConstraintExpr);
903
std::move(*
Req
));
/src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp
2312
for (concepts::Requirement *
Req
: Requirements) {
2313
if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(
Req
)) {
2318
} else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(
Req
)) {
2339
auto *NestedReq = cast<concepts::NestedRequirement>(
Req
);
StmtProfile.cpp
1491
for (concepts::Requirement *
Req
: S->getRequirements()) {
1492
if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(
Req
)) {
1497
} else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(
Req
)) {
1502
// C++2a [expr.prim.
req
.compound]p1 Example:
1520
auto *NestedReq = cast<concepts::NestedRequirement>(
Req
);
Completed in 88 milliseconds
Indexes created Thu Jun 18 00:24:58 UTC 2026