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

  /src/external/apache2/llvm/dist/clang/lib/Frontend/
LayoutOverrideSource.cpp 35 std::string CurrentType;
48 if (!CurrentType.empty())
49 Layouts[CurrentType] = CurrentLayout;
71 CurrentType = parseName(LineStr);
150 if (!CurrentType.empty())
151 Layouts[CurrentType] = CurrentLayout;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 2815 QualType CurrentType = E->getTypeSourceInfo()->getType();
2828 CurrentType =
2829 CGF.getContext().getAsArrayType(CurrentType)->getElementType();
2833 CGF.getContext().getTypeSizeInChars(CurrentType).getQuantity());
2842 RecordDecl *RD = CurrentType->castAs<RecordType>()->getDecl();
2862 CurrentType = MemberDecl->getType();
2875 RecordDecl *RD = CurrentType->castAs<RecordType>()->getDecl();
2879 CurrentType = ON.getBase()->getType();
2882 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 564 Type *CurrentType = IV->getType();
566 if (auto *ST = dyn_cast<StructType>(CurrentType)) {
568 CurrentType = ST->getElementType(I);
569 } else if (auto *AT = dyn_cast<ArrayType>(CurrentType)) {
571 CurrentType = AT->getElementType();
7679 Type *CurrentType = IV->getType();
7681 if (auto *ST = dyn_cast<StructType>(CurrentType)) {
7686 CurrentType = ST->getElementType(0);
7687 } else if (auto *AT = dyn_cast<ArrayType>(CurrentType)) {
7689 CurrentType = AT->getElementType()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 15075 QualType CurrentType = ArgTy;
15081 if (!CurrentType->isDependentType()) {
15082 const ArrayType *AT = Context.getAsArrayType(CurrentType);
15085 << CurrentType);
15086 CurrentType = AT->getElementType();
15088 CurrentType = Context.DependentTy;
15110 if (CurrentType->isDependentType()) {
15114 CurrentType = Context.DependentTy;
15119 if (RequireCompleteType(OC.LocStart, CurrentType,
15124 const RecordType *RC = CurrentType->getAs<RecordType>()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 13037 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
13046 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
13049 CurrentType = AT->getElementType();
13050 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
13057 const RecordType *RT = CurrentType->getAs<RecordType>();
13066 CurrentType = MemberDecl->getType().getNonReferenceType();
13079 const RecordType *RT = CurrentType->getAs<RecordType>();
13087 CurrentType = BaseSpec->getType();
13088 const RecordType *BaseRT = CurrentType->getAs<RecordType>();

Completed in 62 milliseconds