OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:APSIntType
(Results
1 - 7
of
7
) sorted by null
/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)
91
bool operator==(const
APSIntType
&Other) const {
99
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());
/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,
RangeConstraintManager.cpp
16
#include "clang/StaticAnalyzer/Core/PathSensitive/
APSIntType
.h"
155
APSIntType
Type(getMinValue());
156
APSIntType
::RangeTestResultKind LowerTest = Type.testInRange(Lower, true);
157
APSIntType
::RangeTestResultKind UpperTest = Type.testInRange(Upper, true);
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
...]
Android.mk
15
APSIntType
.cpp \
SimpleConstraintManager.cpp
16
#include "clang/StaticAnalyzer/Core/PathSensitive/
APSIntType
.h"
230
Adjustment =
APSIntType
(Adjustment).convert(SE->getRHS());
250
APSIntType
WraparoundType = BVF.getAPSIntType(LHS->getType());
264
APSIntType
ComparisonType = std::max(WraparoundType,
APSIntType
(Int));
SimpleSValBuilder.cpp
15
#include "clang/StaticAnalyzer/Core/PathSensitive/
APSIntType
.h"
347
APSIntType
CompareType = std::max(
APSIntType
(LHSValue),
348
APSIntType
(RHSValue));
352
APSIntType
IntType = BasicVals.getAPSIntType(resultTy);
467
APSIntType
IntType = BasicVals.getAPSIntType(resultTy);
[
all
...]
Completed in 592 milliseconds