Home
last modified time | relevance | path

Searched refs:getTruthValue (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp209 return &getTruthValue( V1 < V2 ); in evalAPSInt()
212 return &getTruthValue( V1 > V2 ); in evalAPSInt()
215 return &getTruthValue( V1 <= V2 ); in evalAPSInt()
218 return &getTruthValue( V1 >= V2 ); in evalAPSInt()
221 return &getTruthValue( V1 == V2 ); in evalAPSInt()
224 return &getTruthValue( V1 != V2 ); in evalAPSInt()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h161 inline const llvm::APSInt& getTruthValue(bool b, QualType T) { in getTruthValue() function
165 inline const llvm::APSInt& getTruthValue(bool b) { in getTruthValue() function
166 return getTruthValue(b, Ctx.getLogicalOperationType()); in getTruthValue()
DSValBuilder.h294 return nonloc::ConcreteInt(BasicVals.getTruthValue(b, type)); in makeTruthVal()
298 return nonloc::ConcreteInt(BasicVals.getTruthValue(b)); in makeTruthVal()