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

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp36 std::string CurrentType;
49 if (!CurrentType.empty())
50 Layouts[CurrentType] = CurrentLayout;
72 CurrentType = parseName(LineStr);
151 if (!CurrentType.empty())
152 Layouts[CurrentType] = CurrentLayout;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp1810 QualType CurrentType = E->getTypeSourceInfo()->getType(); local
1823 CurrentType =
1824 CGF.getContext().getAsArrayType(CurrentType)->getElementType();
1828 CGF.getContext().getTypeSizeInChars(CurrentType).getQuantity());
1837 RecordDecl *RD = CurrentType->getAs<RecordType>()->getDecl();
1857 CurrentType = MemberDecl->getType();
1870 RecordDecl *RD = CurrentType->getAs<RecordType>()->getDecl();
1874 CurrentType = ON.getBase()->getType();
1877 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp6970 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
6979 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
6982 CurrentType = AT->getElementType();
6983 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
6990 const RecordType *RT = CurrentType->getAs<RecordType>();
6999 CurrentType = MemberDecl->getType().getNonReferenceType();
7012 const RecordType *RT = CurrentType->getAs<RecordType>();
7020 CurrentType = BaseSpec->getType();
7021 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp9968 QualType CurrentType = ArgTy; local
9976 if (!CurrentType->isDependentType()) {
9977 const ArrayType *AT = Context.getAsArrayType(CurrentType);
9980 << CurrentType);
9981 CurrentType = AT->getElementType();
9983 CurrentType = Context.DependentTy;
10005 if (CurrentType->isDependentType()) {
10009 CurrentType = Context.DependentTy;
10014 if (RequireCompleteType(OC.LocStart, CurrentType,
10019 const RecordType *RC = CurrentType
[all...]

Completed in 208 milliseconds