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

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h73 /// Returns a pair of states (StTrue, StFalse) where the given condition is
76 ProgramStateRef StTrue = assume(State, Cond, true); local
78 // If StTrue is infeasible, asserting the falseness of Cond is unnecessary
80 if (!StTrue) {
93 // We are careful to return the original state, /not/ StTrue,
99 return ProgramStatePair(StTrue, StFalse);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DExprInspectionChecker.cpp66 ProgramStateRef StTrue, StFalse;
67 llvm::tie(StTrue, StFalse) =
70 if (StTrue) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp552 ProgramStateRef StTrue, StFalse; local
553 llvm::tie(StTrue, StFalse) = N->getState()->assume(DefinedRHS);
554 if (StTrue) {
H A DExprEngine.cpp1382 ProgramStateRef StTrue, StFalse; local
1383 tie(StTrue, StFalse) = PrevState->assume(V);
1387 if (StTrue)
1388 builder.generateNode(StTrue, true, PredI);

Completed in 128 milliseconds