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

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 458 QualType CondType = CondExpr->getType();
461 if (CondType->isDependentType() || E->isTypeDependent())
468 return CheckConvertedConstantExpression(E, CondType, TempVal,
478 ER = ImpCastExprToType(ER.get(), CondType, CK_IntegralCast);
1152 QualType CondType = Cond->getType();
1155 const EnumType *CondEnumType = CondType->getAs<EnumType>();
1168 if (S.Context.hasSameUnqualifiedType(CondType, CaseType))
1172 << CondType << CaseType << Cond->getSourceRange()
1192 QualType CondType = CondExpr->getType();
1209 unsigned CondWidth = HasDependentValue ? 0 : Context.getIntWidth(CondType);
    [all...]
SemaExprCXX.cpp 6008 QualType CondType = Cond.get()->getType();
6009 const auto *CondVT = CondType->castAs<VectorType>();
6057 if (CondType->isExtVectorType())
6069 (!CondType->isExtVectorType() || ResultType->isExtVectorType()) &&
6076 Diag(QuestionLoc, diag::err_conditional_vector_size) << CondType
6083 Diag(QuestionLoc, diag::err_conditional_vector_element_size) << CondType
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 4537 llvm::Type *condType = ConvertType(condExpr->getType());
4538 auto *vecTy = cast<llvm::FixedVectorType>(condType);
4576 llvm::Type *CondType = ConvertType(condExpr->getType());
4577 auto *VecTy = cast<llvm::VectorType>(CondType);

Completed in 75 milliseconds