Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp268 return &getTruthValue( V1 < V2 ); in evalAPSInt()
271 return &getTruthValue( V1 > V2 ); in evalAPSInt()
274 return &getTruthValue( V1 <= V2 ); in evalAPSInt()
277 return &getTruthValue( V1 >= V2 ); in evalAPSInt()
280 return &getTruthValue( V1 == V2 ); in evalAPSInt()
283 return &getTruthValue( V1 != V2 ); in evalAPSInt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h213 const llvm::APSInt &getTruthValue(bool b, QualType T) { in getTruthValue() function
218 const llvm::APSInt &getTruthValue(bool b) { in getTruthValue() function
219 return getTruthValue(b, Ctx.getLogicalOperationType()); in getTruthValue()
H A DSValBuilder.h336 return nonloc::ConcreteInt(BasicVals.getTruthValue(b, type)); in makeTruthVal()
340 return nonloc::ConcreteInt(BasicVals.getTruthValue(b)); in makeTruthVal()