Searched refs:ElType (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 312 SequentialType(TypeID TID, Type *ElType) in SequentialType() argument 313 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType() 337 ArrayType(Type *ElType, uint64_t NumEl); 363 VectorType(Type *ElType, unsigned NumEl); 428 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
/external/llvm/lib/IR/ |
D | Type.cpp | 678 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 679 : SequentialType(ArrayTyID, ElType) { in ArrayType() 705 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument 706 : SequentialType(VectorTyID, ElType) { in VectorType()
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 2828 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local 2829 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 2832 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion() 2835 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 2839 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 2852 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local 2853 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 2856 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 2862 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
|