HomeSort by: relevance | last modified time | path
    Searched refs:CondIsTrue (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 1275 bool CondIsTrue = PBI->getSuccessor(0) == CurrentBB;
1277 isImpliedCondition(PBI->getCondition(), Cond, DL, CondIsTrue);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 4450 bool CondIsTrue;
4454 bool condIsTrue)
4456 CondIsTrue(condIsTrue) {
4472 return CondIsTrue;
4474 void setIsConditionTrue(bool isTrue) { CondIsTrue = isTrue; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 3683 bool CondIsTrue = PBI->getSuccessor(0) == BB;
3685 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue));
3705 bool CondIsTrue = PBI->getSuccessor(0) == BB;
3707 ConstantInt::get(Type::getInt1Ty(BB->getContext()), CondIsTrue),
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporter.cpp 6575 // The value of CondIsTrue only matters if the value is not
6577 bool CondIsTrue = !E->isConditionDependent() && E->isConditionTrue();
6581 ToRParenLoc, CondIsTrue);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 15243 bool CondIsTrue = false;
15254 CondIsTrue = condEval.getZExtValue();
15257 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr;
15265 resType, VK, OK, RPLoc, CondIsTrue);

Completed in 77 milliseconds