OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:APSIntType
(Results
1 - 8
of
8
) sorted by null
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h
1
//==
APSIntType
.h - Simple record of the type of APSInts --------*- C++ -*--==//
20
class
APSIntType
{
25
APSIntType
(uint32_t Width, bool Unsigned)
28
/* implicit */
APSIntType
(const llvm::APSInt &Value)
92
bool operator==(const
APSIntType
&Other) const {
100
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"
164
APSIntType
Type(getMinValue());
165
APSIntType
::RangeTestResultKind LowerTest = Type.testInRange(Lower, true);
166
APSIntType
::RangeTestResultKind UpperTest = Type.testInRange(Upper, true);
169
case
APSIntType
::RTR_Below:
171
case
APSIntType
::RTR_Below:
181
case
APSIntType
::RTR_Within:
186
case
APSIntType
::RTR_Above:
193
case
APSIntType
::RTR_Within:
195
case
APSIntType
::RTR_Below
[
all
...]
SimpleConstraintManager.cpp
16
#include "clang/StaticAnalyzer/Core/PathSensitive/
APSIntType
.h"
235
Adjustment =
APSIntType
(Adjustment).convert(SE->getRHS());
255
APSIntType
WraparoundType = BVF.getAPSIntType(LHS->getType());
269
APSIntType
ComparisonType = std::max(WraparoundType,
APSIntType
(Int));
309
APSIntType
WraparoundType = BVF.getAPSIntType(Sym->getType());
316
APSIntType
ComparisonType = std::max(WraparoundType,
APSIntType
(From));
Android.mk
16
APSIntType
.cpp \
SimpleSValBuilder.cpp
15
#include "clang/StaticAnalyzer/Core/PathSensitive/
APSIntType
.h"
373
APSIntType
CompareType = std::max(
APSIntType
(LHSValue),
374
APSIntType
(RHSValue));
378
APSIntType
IntType = BasicVals.getAPSIntType(resultTy);
493
APSIntType
IntType = BasicVals.getAPSIntType(resultTy);
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp
692
llvm::APSInt fourInt =
APSIntType
(maxValInt).getValue(4);
[
all
...]
Completed in 169 milliseconds