Home
last modified time | relevance | path

Searched refs:ExprTy (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprOpenMP.h158 OMPArrayShapingExpr(QualType ExprTy, Expr *Op, SourceLocation L,
320 OMPIteratorExpr(QualType ExprTy, SourceLocation IteratorKwLoc,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSema.cpp602 QualType ExprTy = Context.getCanonicalType(E->getType()); in ImpCastExprToType() local
605 if (ExprTy == TypeTy) in ImpCastExprToType()
2292 QualType ExprTy = E.getType(); in tryExprAsCall() local
2294 QualType PointeeTy = ExprTy->getPointeeType(); in tryExprAsCall()
2298 FunTy = ExprTy->getAs<FunctionType>(); in tryExprAsCall()
H A DSemaChecking.cpp8778 QualType ExprTy = E->getType(); in checkFormatExpr() local
8779 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { in checkFormatExpr()
8780 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr()
8799 analyze_printf::ArgType::MatchKind Match = AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
8811 ExprTy = E->getType(); in checkFormatExpr()
8820 AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
8834 if (ExprTy == S.Context.IntTy && in checkFormatExpr()
8837 ExprTy = S.Context.CharTy; in checkFormatExpr()
8842 if (auto EnumTy = ExprTy->getAs<EnumType>()) { in checkFormatExpr()
8843 ExprTy = EnumTy->getDecl()->getIntegerType(); in checkFormatExpr()
[all …]
H A DSemaInit.cpp1200 QualType ExprTy = T; in CheckExplicitInitList() local
1201 if (!ExprTy->isArrayType()) in CheckExplicitInitList()
1202 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context); in CheckExplicitInitList()
1204 IList->setType(ExprTy); in CheckExplicitInitList()
1205 StructuredList->setType(ExprTy); in CheckExplicitInitList()
H A DSemaExpr.cpp4117 QualType ExprTy = E->getType(); in CheckUnaryExprOrTypeTraitOperand() local
4118 assert(!ExprTy->isReferenceType()); in CheckUnaryExprOrTypeTraitOperand()
4141 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), in CheckUnaryExprOrTypeTraitOperand()
4145 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), in CheckUnaryExprOrTypeTraitOperand()
4167 ExprTy = E->getType(); in CheckUnaryExprOrTypeTraitOperand()
4168 assert(!ExprTy->isReferenceType()); in CheckUnaryExprOrTypeTraitOperand()
4170 if (ExprTy->isFunctionType()) { in CheckUnaryExprOrTypeTraitOperand()
4176 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), in CheckUnaryExprOrTypeTraitOperand()
H A DSemaOpenMP.cpp17928 QualType ExprTy = RefExpr->getType().getNonReferenceType(); in ActOnOpenMPDependClause() local
17934 ExprTy = ATy->getElementType(); in ActOnOpenMPDependClause()
17936 ExprTy = BaseType->getPointeeType(); in ActOnOpenMPDependClause()
17937 ExprTy = ExprTy.getNonReferenceType(); in ActOnOpenMPDependClause()
17958 DSAStack->getOMPDependT().getTypePtr() == ExprTy.getTypePtr())) { in ActOnOpenMPDependClause()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp481 QualType ExprTy = E->getType(); in EmitCompoundStmtWithoutScope() local
482 if (hasAggregateEvaluationKind(ExprTy)) { in EmitCompoundStmtWithoutScope()
488 RetAlloca = CreateMemTemp(ExprTy); in EmitCompoundStmtWithoutScope()
H A DCGExpr.cpp2875 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType()); in EmitUnaryOpLValue() local
2887 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace()); in EmitUnaryOpLValue()
2912 QualType T = ExprTy->castAs<ComplexType>()->getElementType(); in EmitUnaryOpLValue()
H A DCGOpenMPRuntime.cpp7268 QualType ExprTy = E->getType().getCanonicalType(); in getExprTypeSize() local
7285 if (const auto *RefTy = ExprTy->getAs<ReferenceType>()) in getExprTypeSize()
7286 ExprTy = RefTy->getPointeeType().getCanonicalType(); in getExprTypeSize()
7339 return CGF.getTypeSize(ExprTy); in getExprTypeSize()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp4761 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op, in OMPArrayShapingExpr() argument
4764 : Expr(OMPArrayShapingExprClass, ExprTy, VK_LValue, OK_Ordinary), LPLoc(L), in OMPArrayShapingExpr()
4883 QualType ExprTy, SourceLocation IteratorKwLoc, SourceLocation L, in OMPIteratorExpr() argument
4886 : Expr(OMPIteratorExprClass, ExprTy, VK_LValue, OK_Ordinary), in OMPIteratorExpr()