Home | History | Annotate | Download | only in IR

Lines Matching defs:ArrayType

99   const ArrayType *ATy = dyn_cast<ArrayType>(this);
159 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
205 return cast<ArrayType>(this)->getNumElements();
668 // ArrayType Implementation
671 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
676 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
681 ArrayType *&Entry =
685 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
689 bool ArrayType::isValidElementType(Type *ElemTy) {