HomeSort by relevance Sort by last modified time
    Searched refs:APSIntType (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 1 //===--- APSIntType.cpp - Simple record of the type of APSInts ------------===//
10 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h"
15 APSIntType::RangeTestResultKind
16 APSIntType::testInRange(const llvm::APSInt &Value) const {
RangeConstraintManager.cpp 16 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h"
155 APSIntType Type(getMinValue());
156 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower);
157 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper);
160 case APSIntType::RTR_Below:
162 case APSIntType::RTR_Below:
172 case APSIntType::RTR_Within:
177 case APSIntType::RTR_Above:
184 case APSIntType::RTR_Within:
186 case APSIntType::RTR_Below
    [all...]
SimpleConstraintManager.cpp 16 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h"
223 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
243 APSIntType WraparoundType = BVF.getAPSIntType(LHS->getType());
257 APSIntType ComparisonType = std::max(WraparoundType, APSIntType(Int));
Android.mk 15 APSIntType.cpp \
SimpleSValBuilder.cpp 15 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h"
374 APSIntType CompareType = std::max(APSIntType(LHSValue),
375 APSIntType(RHSValue));
379 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
490 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 1 //== APSIntType.h - Simple record of the type of APSInts --------*- C++ -*--==//
19 class APSIntType {
24 APSIntType(uint32_t Width, bool Unsigned)
27 /* implicit */ APSIntType(const llvm::APSInt &Value)
88 bool operator==(const APSIntType &Other) const {
96 bool operator<(const APSIntType &Other) const {
BasicValueFactory.h 20 #include "clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h"
95 APSIntType getAPSIntType(QualType T) const {
97 return APSIntType(Ctx.getTypeSize(T),
105 APSIntType TargetType(To);
106 if (TargetType == APSIntType(From))
113 APSIntType TargetType = getAPSIntType(T);
114 if (TargetType == APSIntType(From))
126 return getValue(APSIntType(v).getMaxValue());
130 return getValue(APSIntType(v).getMinValue());

Completed in 316 milliseconds