Searched refs:StTrue (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp118 ProgramStateRef StTrue, StFalse;
119 std::tie(StTrue, StFalse) = State->assume(Eval.castAs<DefinedSVal>());
120 return StTrue && !StFalse;
H A DExprEngine.cpp2203 ProgramStateRef StTrue, StFalse; local
2204 std::tie(StTrue, StFalse) = PrevState->assume(V);
2208 if (StTrue)
2209 builder.generateNode(StTrue, true, PredI);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h91 /// Returns a pair of states (StTrue, StFalse) where the given condition is
94 ProgramStateRef StTrue = assume(State, Cond, true); local
96 // If StTrue is infeasible, asserting the falseness of Cond is unnecessary
98 if (!StTrue) {
107 // We are careful to return the original state, /not/ StTrue,
113 return ProgramStatePair(StTrue, StFalse);
129 // If StTrue is infeasible, asserting the falseness of Cond is unnecessary
137 // We are careful to return the original state, /not/ StTrue,
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DExprInspectionChecker.cpp132 ProgramStateRef StTrue, StFalse;
133 std::tie(StTrue, StFalse) =
136 if (StTrue) {

Completed in 74 milliseconds