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

/external/clang/lib/CodeGen/
H A DCGStmt.cpp1416 const llvm::APSInt &ConstantCondValue,
1439 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue)
1476 llvm::APSInt ConstantCondValue; local
1477 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) {
1480 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts,
1415 FindCaseStatementsForValue(const SwitchStmt &S, const llvm::APSInt &ConstantCondValue, SmallVectorImpl<const Stmt*> &ResultStmts, ASTContext &C, const SwitchCase *&ResultCase) argument
/external/clang/lib/Sema/
H A DSemaStmt.cpp841 llvm::APSInt ConstantCondValue; local
845 = CondExprBeforePromotion->EvaluateAsInt(ConstantCondValue, Context,
848 (ConstantCondValue.getBitWidth() == CondWidth &&
849 ConstantCondValue.isSigned() == CondIsSigned));
859 CaseVals[i].first == ConstantCondValue)
950 LoVal <= ConstantCondValue &&
951 ConstantCondValue <= HiVal)
1012 << ConstantCondValue.toString(10)

Completed in 181 milliseconds