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

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 1200 QualType ExprTy = T;
1201 if (!ExprTy->isArrayType())
1202 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
1204 IList->setType(ExprTy);
1205 StructuredList->setType(ExprTy);
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>();
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(),
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 481 QualType ExprTy = E->getType();
482 if (hasAggregateEvaluationKind(ExprTy)) {
488 RetAlloca = CreateMemTemp(ExprTy);
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);

Completed in 194 milliseconds