Lines Matching refs:CAT
861 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
863 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
864 uint64_t Size = CAT->getSize().getZExtValue();
1805 const ConstantArrayType *cat = cast<ConstantArrayType>(ty);
1807 getVariableArrayDecayedType(cat->getElementType()),
1808 cat->getSize(),
1809 cat->getSizeModifier(),
1810 cat->getIndexTypeCVRQualifiers());
3147 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
3148 return getConstantArrayType(unqualElementType, CAT->getSize(),
3149 CAT->getSizeModifier(), 0);
3448 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
3449 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
3450 CAT->getSizeModifier(),
3451 CAT->getIndexTypeCVRQualifiers()));
4505 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
4506 if (getTypeSize(CAT->getElementType()) == 0)
4509 S += llvm::utostr(CAT->getSize().getZExtValue());