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

  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 205 return &getTruthValue( V1 < V2 );
208 return &getTruthValue( V1 > V2 );
211 return &getTruthValue( V1 <= V2 );
214 return &getTruthValue( V1 >= V2 );
217 return &getTruthValue( V1 == V2 );
220 return &getTruthValue( V1 != V2 );
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 161 inline const llvm::APSInt& getTruthValue(bool b, QualType T) {
165 inline const llvm::APSInt& getTruthValue(bool b) {
166 return getTruthValue(b, Ctx.getLogicalOperationType());
SValBuilder.h 289 return nonloc::ConcreteInt(BasicVals.getTruthValue(b, type));
293 return nonloc::ConcreteInt(BasicVals.getTruthValue(b));

Completed in 1235 milliseconds