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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
  134   ASTContext &getContext() const { return Ctx; }
  143     return APSIntType(Ctx.getIntWidth(T),
  167     QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy;
  167     QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy;
  201     return getValue(0, Ctx.getTypeSize(T), true);
  205     return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
  205     return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
  209     return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
  209     return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
  213     return getValue(b ? 1 : 0, Ctx.getIntWidth(T),
  218     return getTruthValue(b, Ctx.getLogicalOperationType());
tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
  242       if (!Ctx.getLangOpts().CPlusPlus2a) {