Home | History | Annotate | Download | only in VMCore

Lines Matching defs:ArrayType

114   const ArrayType *ATy = dyn_cast<ArrayType>(this);
175 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
615 // ArrayType Implementation
618 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
624 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
629 ArrayType *&Entry =
633 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
637 bool ArrayType::isValidElementType(Type *ElemTy) {