Searched refs:CondType (Results 1 – 1 of 1) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 392 QualType CondType = CondExpr->getType(); in ActOnCaseStmt() local 394 return CheckConvertedConstantExpression(E, CondType, TempVal, in ActOnCaseStmt() 753 QualType CondType = CondExpr->getType(); in ActOnFinishSwitchStmt() local 770 if (!CondType->isIntegralOrEnumerationType()) in ActOnFinishSwitchStmt() 786 unsigned CondWidth = HasDependentValue ? 0 : Context.getIntWidth(CondType); in ActOnFinishSwitchStmt() 787 bool CondIsSigned = CondType->isSignedIntegerOrEnumerationType(); in ActOnFinishSwitchStmt() 844 CheckConvertedConstantExpression(Lo, CondType, LoVal, CCEK_CaseValue); in ActOnFinishSwitchStmt() 858 Lo = ImpCastExprToType(Lo, CondType, CK_IntegralCast).get(); in ActOnFinishSwitchStmt() 961 CheckConvertedConstantExpression(Hi, CondType, HiVal, in ActOnFinishSwitchStmt() 974 Hi = ImpCastExprToType(Hi, CondType, CK_IntegralCast).get(); in ActOnFinishSwitchStmt()
|