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 | 2721 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local 2722 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 2725 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion() 2728 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 2732 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 2745 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local 2746 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 2749 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 2755 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
|