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

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 73 /// Returns a pair of states (StTrue, StFalse) where the given condition is
91 ProgramStateRef StFalse = assume(State, Cond, false);
92 if (!StFalse) {
99 return ProgramStatePair(StTrue, StFalse);
  /external/clang/lib/StaticAnalyzer/Checkers/
ExprInspectionChecker.cpp 68 ProgramStateRef StTrue, StFalse;
69 llvm::tie(StTrue, StFalse) =
73 if (StFalse)
78 if (StFalse)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 552 ProgramStateRef StTrue, StFalse;
553 llvm::tie(StTrue, StFalse) = N->getState()->assume(DefinedRHS);
555 if (StFalse) {
565 assert(StFalse && "Infeasible path!");
    [all...]
ExprEngine.cpp     [all...]

Completed in 81 milliseconds