Searched refs:ElType (Results 1 – 3 of 3) sorted by relevance
| /NextBSD/contrib/llvm/include/llvm/IR/ |
| HD | DerivedTypes.h | 316 SequentialType(TypeID TID, Type *ElType) in SequentialType() argument 317 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType() 341 ArrayType(Type *ElType, uint64_t NumEl); 367 VectorType(Type *ElType, unsigned NumEl); 452 explicit PointerType(Type *ElType, unsigned AddrSpace);
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | Type.cpp | 681 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() argument 682 : SequentialType(ArrayTyID, ElType) { in ArrayType() 708 VectorType::VectorType(Type *ElType, unsigned NumEl) in VectorType() argument 709 : SequentialType(VectorTyID, ElType) { in VectorType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaExprCXX.cpp | 3356 QualType ElType = ToComplex->getElementType(); in PerformImplicitConversion() local 3357 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 3360 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { in PerformImplicitConversion() 3363 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3367 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3380 QualType ElType = FromComplex->getElementType(); in PerformImplicitConversion() local 3381 bool isFloatingComplex = ElType->isRealFloatingType(); in PerformImplicitConversion() 3384 From = ImpCastExprToType(From, ElType, in PerformImplicitConversion() 3390 if (Context.hasSameUnqualifiedType(ElType, ToType)) { in PerformImplicitConversion()
|