reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 6419   if (const auto *RetValue = Node.getRetValue())
tools/clang/lib/AST/ExprConstant.cpp
 4617     const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
tools/clang/lib/AST/Interp/ByteCodeStmtGen.cpp
  166   if (const Expr *RE = RS->getRetValue()) {
tools/clang/lib/Analysis/ConstructionContext.cpp
  121     assert(!RS->getRetValue()->getType().getCanonicalType()
tools/clang/lib/Analysis/Consumed.cpp
  880     InfoEntry Entry = findInfo(Ret->getRetValue());
tools/clang/lib/Analysis/ReachableCode.cpp
   96           if (const Expr *RE = RS->getRetValue()) {
tools/clang/lib/CodeGen/CGStmt.cpp
 1073   const Expr *RV = S.getRetValue();
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  424     if (S->getRetValue())
  425       Visit(S->getRetValue());
tools/clang/lib/CodeGen/CoverageMappingGen.cpp
  899     if (S->getRetValue())
  900       Visit(S->getRetValue());
tools/clang/lib/Sema/SemaLambda.cpp
  760     const Expr *RetE = RS->getRetValue();
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  370     return isIdenticalStmt(Ctx, ReturnStmt1->getRetValue(),
  371                            ReturnStmt2->getRetValue(), IgnoreSideEffects);
tools/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
  285   bugreporter::trackExpressionValue(N, RS->getRetValue(), *R,
tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
 2740   const Expr *E = S->getRetValue();
tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  524   auto RetExpr = S->getRetValue();
tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
  216   checkForInvalidSelf(S->getRetValue(), C,
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
  978   const Expr *RetE = S->getRetValue();
tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
   38   const Expr *RetE = RS->getRetValue();
tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
   40   const Expr *RetE = RS->getRetValue();
tools/clang/lib/StaticAnalyzer/Checkers/ReturnValueChecker.cpp
  119   if (!RS || !RS->getRetValue())
  137   SVal ReturnV = State->getSVal(RS->getRetValue(), C.getLocationContext());
tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
  253   const Expr *RetE = RS->getRetValue();
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1028     const Expr *RetE = Ret->getRetValue();
tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
  117     if (const Expr *RE = RS->getRetValue())
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  222         const Expr *RetE = RCC->getReturnStmt()->getRetValue();
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
 1099   if (RS->getRetValue()) {
tools/clang/tools/extra/clang-tidy/readability/NonConstParameterCheck.cpp
   88       markCanNotBeConst(R->getRetValue(), true);
tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
  273   if (const auto *Bool = dyn_cast<CXXBoolLiteralExpr>(Ret->getRetValue())) {