Home
last modified time | relevance | path

Searched refs:ElemType (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/
DTargetData.cpp638 Type *ElemType = GV->getType()->getElementType(); in getPreferredAlignment() local
639 unsigned Alignment = getPrefTypeAlignment(ElemType); in getPreferredAlignment()
644 Alignment = std::max(GVAlignment, getABITypeAlignment(ElemType)); in getPreferredAlignment()
651 if (getTypeSizeInBits(ElemType) > 128) in getPreferredAlignment()
/external/clang/lib/Sema/
DSemaInit.cpp196 InitListExpr *IList, QualType ElemType,
744 QualType ElemType, in CheckSubElementType() argument
753 = getStructuredSubobjectInit(IList, Index, ElemType, in CheckSubElementType()
756 CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex, in CheckSubElementType()
761 } else if (ElemType->isScalarType()) { in CheckSubElementType()
762 return CheckScalarType(Entity, IList, ElemType, Index, in CheckSubElementType()
764 } else if (ElemType->isReferenceType()) { in CheckSubElementType()
765 return CheckReferenceType(Entity, IList, ElemType, Index, in CheckSubElementType()
769 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) { in CheckSubElementType()
776 CheckStringInit(Str, ElemType, arrayType, SemaRef); in CheckSubElementType()
[all …]
DSemaType.cpp4283 QualType ElemType = Context.getBaseElementType(T); in RequireLiteralType() local
4284 RequireCompleteType(Loc, ElemType, 0); in RequireLiteralType()
4297 const RecordType *RT = ElemType->getAs<RecordType>(); in RequireLiteralType()
/external/clang/lib/Serialization/
DASTReader.cpp3722 QualType ElemType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
3723 return Context.getComplexType(ElemType); in readTypeRecord()