Searched refs:isSat (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h93 ConditionTruthVal isSat = checkModel(State, Sym, Exp); variable
97 if (isSat.isConstrainedTrue() && isNotSat.isConstrainedFalse())
101 if (isSat.isConstrainedFalse() && isNotSat.isConstrainedTrue())
130 Optional<bool> isSat = Solver->check(); variable
131 if (!isSat.hasValue() || !isSat.getValue())
148 if (!isSat.hasValue() || isNotSat.getValue())
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2849 Optional<bool> isSat = RefutationSolver->check(); local
2850 if (!isSat.hasValue())
2853 if (!isSat.getValue())

Completed in 63 milliseconds