Searched refs:ElType (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 315 SequentialType(TypeID TID, Type *ElType) in SequentialType() argument 316 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType() 340 ArrayType(Type *ElType, uint64_t NumEl); 366 VectorType(Type *ElType, unsigned NumEl); 451 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/external/llvm/lib/IR/ |
D | Type.cpp | 676 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 677 : SequentialType(ArrayTyID, ElType) { in ArrayType() 703 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument 704 : SequentialType(VectorTyID, ElType) { in VectorType()
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 3105 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local 3106 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 3109 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion() 3112 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3116 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3129 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local 3130 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 3133 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3139 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
|