HomeSort by: relevance | last modified time | path
    Searched defs:Req (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
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)) {
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...]
  /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/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/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));

Completed in 25 milliseconds