OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
281
return nonloc::ConcreteInt(BasicVals.
getTruthValue
(b, type));
285
return nonloc::ConcreteInt(BasicVals.
getTruthValue
(b));
Completed in 727 milliseconds