Searched refs:ElType (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.1-release/contrib/llvm/include/llvm/IR/
H A DDerivedTypes.h312 SequentialType(TypeID TID, Type *ElType) argument
313 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) {
337 ArrayType(Type *ElType, uint64_t NumEl);
363 VectorType(Type *ElType, unsigned NumEl);
428 explicit PointerType(Type *ElType, unsigned AddrSpace);
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DType.cpp674 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) argument
675 : SequentialType(ArrayTyID, ElType) {
701 VectorType::VectorType(Type *ElType, unsigned NumEl) argument
702 : SequentialType(VectorTyID, ElType) {
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp2939 QualType ElType = ToComplex->getElementType(); local
2940 bool isFloatingComplex = ElType->isRealFloatingType();
2943 if (Context.hasSameUnqualifiedType(ElType, From->getType())) {
2946 From = ImpCastExprToType(From, ElType,
2950 From = ImpCastExprToType(From, ElType,
2963 QualType ElType = FromComplex->getElementType(); local
2964 bool isFloatingComplex = ElType->isRealFloatingType();
2967 From = ImpCastExprToType(From, ElType,
2973 if (Context.hasSameUnqualifiedType(ElType, ToType)) {

Completed in 95 milliseconds