Home | History | Annotate | Download | only in AST

Lines Matching refs:cat

1469                                    const ConstantArrayType *CAT) {
1471 Context.getTypeInfoInChars(CAT->getElementType());
1472 uint64_t Size = CAT->getSize().getZExtValue();
1487 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T))
1488 return getConstantArrayInfoInChars(*this, CAT);
1554 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
1556 TypeInfo EltInfo = getTypeInfo(CAT->getElementType());
1557 uint64_t Size = CAT->getSize().getZExtValue();
1981 for (const auto *Cat : OI->visible_categories())
1982 CollectInheritedProtocols(Cat, Protocols);
2700 const ConstantArrayType *cat = cast<ConstantArrayType>(ty);
2702 getVariableArrayDecayedType(cat->getElementType()),
2703 cat->getSize(),
2704 cat->getSizeModifier(),
2705 cat->getIndexTypeCVRQualifiers());
4222 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
4223 return getConstantArrayType(unqualElementType, CAT->getSize(),
4224 CAT->getSizeModifier(), 0);
4525 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
4526 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
4527 CAT->getSizeModifier(),
4528 CAT->getIndexTypeCVRQualifiers()));
5716 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
5717 S += llvm::utostr(CAT->getSize().getZExtValue());