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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
   84     return Eng.getContext();
   88     return Eng.getContext().getLangOpts();
tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
  135                 CE->isBuiltinAssumeFalse(Eng.getContext())) {
tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  210       StateMgr(getContext(), mgr.getStoreManagerCreator(),
  772   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
  799   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
  822   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
  997     QualType BTy = getContext().getBaseElementType(DTy);
 1015     while (const auto *AT = getContext().getAsArrayType(DTy))
 1092     PostImplicitCall PP(D.getDestructorDecl(getContext()),
 1116     while (const ArrayType *AT = getContext().getAsArrayType(T)) {
 1198   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
 1795         assert(SE->getType() == getContext().VoidTy
 2111   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
 2140                                                getContext());
 2365     llvm::APSInt V1 = Case->getLHS()->EvaluateKnownConstInt(getContext());
 2366     assert(V1.getBitWidth() == getContext().getIntWidth(CondE->getType()));
 2371       V2 = E->EvaluateKnownConstInt(getContext());
 2493     SVal V = svalBuilder.conjureSymbolVal(Ex, LCtx, getContext().VoidPtrTy,
 2541         T = getContext().CharTy;
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  146       CTy = getContext().getCanonicalType(CTy);
  150       CLHSTy = getContext().getCanonicalType(CLHSTy);
  152       QualType LTy = getContext().getCanonicalType(LHS->getType());
  199   CanQualType T = getContext().getCanonicalType(BE->getType());
  265     ExTy = getContext().getLValueReferenceType(ExTy);
  268     ExTy = getContext().getRValueReferenceType(ExTy);
  291     resultType = getContext().getPointerType(resultType);
  453           resultType = getContext().getPointerType(resultType);
  492           resultType = getContext().getPointerType(resultType);
  616             Ty = getContext().getPointerType(Ty);
  739   QualType T = getContext().getCanonicalType(IE->getType());
  850   if (OOE->EvaluateAsInt(Result, getContext())) {
  852     assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType()));
  894     APSInt Value = Ex->EvaluateKnownConstInt(getContext());
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  650   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
  673   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
  881                                   getContext().getCanonicalType(TE->getType()),
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  265           getContext().getPointerType(getContext().VoidTy));
  265           getContext().getPointerType(getContext().VoidTy));
tools/clang/unittests/StaticAnalyzer/StoreTest.cpp
   25     const ASTContext &ACtx = Eng.getContext();