Home
last modified time | relevance | path

Searched refs:CATy (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp429 const auto *CATy = Finder->getASTContext().getAsConstantArrayType( in AST_MATCHER() local
431 if (!CATy) in AST_MATCHER()
439 ArrIdx.getLimitedValue() < CATy->getLimitedSize()) in AST_MATCHER()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3478 CountAttributedType *CATy = in getCountAttributedType() local
3480 if (CATy) in getCountAttributedType()
3481 return QualType(CATy, 0); in getCountAttributedType()
3486 CATy = (CountAttributedType *)Allocate(Size, TypeAlignment); in getCountAttributedType()
3487 new (CATy) CountAttributedType(WrappedTy, CanonTy, CountExpr, CountInBytes, in getCountAttributedType()
3489 Types.push_back(CATy); in getCountAttributedType()
3490 CountAttributedTypes.InsertNode(CATy, InsertPos); in getCountAttributedType()
3492 return QualType(CATy, 0); in getCountAttributedType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp20105 const auto *CATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr()); in checkArrayExpressionDoesNotReferToWholeSize() local
20106 if (!CATy) in checkArrayExpressionDoesNotReferToWholeSize()
20114 return CATy->getSExtSize() != ConstLength.getSExtValue(); in checkArrayExpressionDoesNotReferToWholeSize()