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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprOpenMP.h 158 OMPArrayShapingExpr(QualType ExprTy, Expr *Op, SourceLocation L,
320 OMPIteratorExpr(QualType ExprTy, SourceLocation IteratorKwLoc,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 8778 QualType ExprTy = E->getType();
8779 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) {
8780 ExprTy = TET->getUnderlyingExpr()->getType();
8799 analyze_printf::ArgType::MatchKind Match = AT.matchesType(S.Context, ExprTy);
8811 ExprTy = E->getType();
8820 AT.matchesType(S.Context, ExprTy);
8834 if (ExprTy == S.Context.IntTy &&
8837 ExprTy = S.Context.CharTy;
8842 if (auto EnumTy = ExprTy->getAs<EnumType>()) {
8843 ExprTy = EnumTy->getDecl()->getIntegerType()
    [all...]
Sema.cpp 602 QualType ExprTy = Context.getCanonicalType(E->getType());
605 if (ExprTy == TypeTy)
2292 QualType ExprTy = E.getType();
2294 QualType PointeeTy = ExprTy->getPointeeType();
2298 FunTy = ExprTy->getAs<FunctionType>();
SemaInit.cpp 1200 QualType ExprTy = T;
1201 if (!ExprTy->isArrayType())
1202 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
1204 IList->setType(ExprTy);
1205 StructuredList->setType(ExprTy);
SemaExpr.cpp 4117 QualType ExprTy = E->getType();
4118 assert(!ExprTy->isReferenceType());
4141 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
4145 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
4167 ExprTy = E->getType();
4168 assert(!ExprTy->isReferenceType());
4170 if (ExprTy->isFunctionType()) {
4176 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
SemaOpenMP.cpp 17928 QualType ExprTy = RefExpr->getType().getNonReferenceType();
17934 ExprTy = ATy->getElementType();
17936 ExprTy = BaseType->getPointeeType();
17937 ExprTy = ExprTy.getNonReferenceType();
17958 DSAStack->getOMPDependT().getTypePtr() == ExprTy.getTypePtr())) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 481 QualType ExprTy = E->getType();
482 if (hasAggregateEvaluationKind(ExprTy)) {
488 RetAlloca = CreateMemTemp(ExprTy);
CGExpr.cpp 2875 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
2887 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
2912 QualType T = ExprTy->castAs<ComplexType>()->getElementType();
CGOpenMPRuntime.cpp 7268 QualType ExprTy = E->getType().getCanonicalType();
7285 if (const auto *RefTy = ExprTy->getAs<ReferenceType>())
7286 ExprTy = RefTy->getPointeeType().getCanonicalType();
7339 return CGF.getTypeSize(ExprTy);
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 4761 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op,
4764 : Expr(OMPArrayShapingExprClass, ExprTy, VK_LValue, OK_Ordinary), LPLoc(L),
4883 QualType ExprTy, SourceLocation IteratorKwLoc, SourceLocation L,
4886 : Expr(OMPIteratorExprClass, ExprTy, VK_LValue, OK_Ordinary),

Completed in 113 milliseconds