Home | History | Annotate | Download | only in slang

Lines Matching refs:CAT

194     const clang::ConstantArrayType *CAT,
200 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
217 if (numElements == 3 && CAT->getSize() != 1) {
228 return CAT;
371 const clang::ConstantArrayType *CAT =
374 return ConstantArrayTypeExportableHelper(CAT, SPS, Context, VD,
596 const clang::ConstantArrayType *CAT = static_cast<const clang::ConstantArrayType*>(CTI);
597 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
1303 const clang::ConstantArrayType *CAT =
1305 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
1317 if (CAT->getSize() != Dim * Dim) {
1358 const clang::ConstantArrayType *CAT) {
1359 slangAssert(CAT != NULL && CAT->getTypeClass() == clang::Type::ConstantArray);
1361 slangAssert((CAT->getSize().getActiveBits() < 32) && "array too large");
1363 unsigned Size = static_cast<unsigned>(CAT->getSize().getZExtValue());
1366 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
1548 const RSExportConstantArrayType* CAT =
1550 CAT->getElementType()->convertToRTD(rtd);
1551 rtd->arraySize = CAT->getSize();