Searched refs:CurrentType (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp35 std::string CurrentType;
48 if (!CurrentType.empty())
49 Layouts[CurrentType] = CurrentLayout;
71 CurrentType = parseName(LineStr);
150 if (!CurrentType.empty())
151 Layouts[CurrentType] = CurrentLayout;
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1491 QualType CurrentType = E->getTypeSourceInfo()->getType(); local
1504 CurrentType =
1505 CGF.getContext().getAsArrayType(CurrentType)->getElementType();
1509 CGF.getContext().getTypeSizeInChars(CurrentType).getQuantity());
1518 RecordDecl *RD = CurrentType->getAs<RecordType>()->getDecl();
1538 CurrentType = MemberDecl->getType();
1551 RecordDecl *RD = CurrentType->getAs<RecordType>()->getDecl();
1555 CurrentType = ON.getBase()->getType();
1558 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
/external/clang/lib/AST/
H A DExprConstant.cpp5221 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
5230 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
5233 CurrentType = AT->getElementType();
5234 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
5241 const RecordType *RT = CurrentType->getAs<RecordType>();
5250 CurrentType = MemberDecl->getType().getNonReferenceType();
5263 const RecordType *RT = CurrentType->getAs<RecordType>();
5271 CurrentType = BaseSpec->getType();
5272 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
/external/clang/lib/Sema/
H A DSemaExpr.cpp9027 QualType CurrentType = ArgTy; local
9035 if (!CurrentType->isDependentType()) {
9036 const ArrayType *AT = Context.getAsArrayType(CurrentType);
9039 << CurrentType);
9040 CurrentType = AT->getElementType();
9042 CurrentType = Context.DependentTy;
9064 if (CurrentType->isDependentType()) {
9068 CurrentType = Context.DependentTy;
9073 if (RequireCompleteType(OC.LocStart, CurrentType,
9078 const RecordType *RC = CurrentType
[all...]

Completed in 126 milliseconds