Searched defs:ConstantCondValue (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGStmt.cpp1108 const llvm::APSInt &ConstantCondValue,
1130 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue)
1172 llvm::APSInt ConstantCondValue; local
1173 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) {
1175 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts,
1107 FindCaseStatementsForValue(const SwitchStmt &S, const llvm::APSInt &ConstantCondValue, SmallVectorImpl<const Stmt*> &ResultStmts, ASTContext &C) argument
/external/clang/lib/Sema/
H A DSemaStmt.cpp760 llvm::APSInt ConstantCondValue; local
764 = CondExprBeforePromotion->EvaluateAsInt(ConstantCondValue, Context,
767 (ConstantCondValue.getBitWidth() == CondWidth &&
768 ConstantCondValue.isSigned() == CondIsSigned));
778 CaseVals[i].first == ConstantCondValue)
869 LoVal <= ConstantCondValue &&
870 ConstantCondValue <= HiVal)
931 << ConstantCondValue.toString(10)

Completed in 71 milliseconds