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

References

tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
  123        << S->getRHS();
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
  172         RHS = &SIE->getRHS();
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
  388       std::tie(NewRInt, RTy) = fixAPSInt(Ctx, SIE->getRHS());
tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
   90           APSIntType(extent.getValue()).convert(SIE->getRHS());
tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  424     const llvm::APInt &RHS = SIE->getRHS();
tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  364               std::to_string(S->getRHS().getLimitedValue()) +
  365               (S->getRHS().isUnsigned() ? "U" : ""))
tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  523     const llvm::APInt &RHS = SIE->getRHS();
tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  458   const llvm::APSInt &RHS = SIE->getRHS();
tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
   39       return assumeSymRel(State, SIE->getLHS(), op, SIE->getRHS());
  191       Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
  361                             (SymInt->getRHS()) :
  362                             (-SymInt->getRHS()));
  709                 symIntExpr->getRHS(), resultTy);
  728               const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
 1296         RHS = SVB.makeIntLocVal(S->getRHS());
 1298         RHS = SVB.makeIntVal(S->getRHS());
tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
   46   if (getRHS().isUnsigned())
   47     os << getRHS().getZExtValue();
   49     os << getRHS().getSExtValue();
   50   if (getRHS().isUnsigned())