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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
   31   bool isUnsigned() const { return IsUnsigned; }
   41     Value.setIsUnsigned(IsUnsigned);
   56     return llvm::APSInt(BitWidth, IsUnsigned);
   61     return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
   66     return llvm::APSInt::getMaxValue(BitWidth, IsUnsigned);
   70     return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue);
   92     return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
   92     return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
  100     return std::tie(BitWidth, IsUnsigned) <
  101            std::tie(Other.BitWidth, Other.IsUnsigned);
tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
   19   if (IsUnsigned && !AllowSignConversions &&
   25     if (Value.isSigned() && !IsUnsigned)
   36       MinBits = Value.getMinSignedBits() - IsUnsigned;
   38       MinBits = Value.getActiveBits() + !IsUnsigned;