Searched refs:CountAttributedType (Results 1 – 16 of 16) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaBoundsSafety.cpp | 18 static CountAttributedType::DynamicCountPointerKind 21 return OrNull ? CountAttributedType::SizedByOrNull in getCountAttrKind() 22 : CountAttributedType::SizedBy; in getCountAttrKind() 23 return OrNull ? CountAttributedType::CountedByOrNull in getCountAttrKind() 24 : CountAttributedType::CountedBy; in getCountAttrKind()
|
H A D | TreeTransform.h | 7387 const CountAttributedType *OldTy = TL.getTypePtr(); in TransformCountAttributedType()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 113 def CountAttributedType : TypeNode<BoundsAttributedType>, NeverCanonical;
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 411 void CountAttributedType::Profile(llvm::FoldingSetNodeID &ID, in Profile() 598 template <> const CountAttributedType *Type::getAs() const { in getAs() 599 return getAsSugar<CountAttributedType>(this); in getAs() 695 return getAs<CountAttributedType>(); in isCountAttributedType() 3844 CountAttributedType::CountAttributedType( in CountAttributedType() function in CountAttributedType
|
H A D | TypePrinter.cpp | 1775 static void printCountAttributedImpl(const CountAttributedType *T, in printCountAttributedImpl() 1792 void TypePrinter::printCountAttributedBefore(const CountAttributedType *T, in printCountAttributedBefore() 1799 void TypePrinter::printCountAttributedAfter(const CountAttributedType *T, in printCountAttributedAfter()
|
H A D | ASTStructuralEquivalence.cpp | 1084 cast<CountAttributedType>(T1)->desugar(), in IsStructurallyEquivalent() 1085 cast<CountAttributedType>(T2)->desugar())) in IsStructurallyEquivalent()
|
H A D | ASTContext.cpp | 2389 return getTypeInfo(cast<CountAttributedType>(T)->desugar().getTypePtr()); in getTypeInfoImpl() 3475 CountAttributedType::Profile(ID, WrappedTy, CountExpr, CountInBytes, OrNull); in getCountAttributedType() 3478 CountAttributedType *CATy = in getCountAttributedType() 3484 size_t Size = CountAttributedType::totalSizeToAlloc<TypeCoupledDeclRefInfo>( in getCountAttributedType() 3486 CATy = (CountAttributedType *)Allocate(Size, TypeAlignment); in getCountAttributedType() 3487 new (CATy) CountAttributedType(WrappedTy, CanonTy, CountExpr, CountInBytes, in getCountAttributedType() 13698 const auto *DX = cast<CountAttributedType>(X), in getCommonSugarTypeNode() 13699 *DY = cast<CountAttributedType>(Y); in getCommonSugarTypeNode()
|
H A D | ASTImporter.cpp | 1545 ASTNodeImporter::VisitCountAttributedType(const CountAttributedType *T) { in VisitCountAttributedType()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 2230 friend class CountAttributedType; 2984 template <> const CountAttributedType *Type::getAs() const; 3266 class CountAttributedType final 3268 public llvm::TrailingObjects<CountAttributedType, 3279 CountAttributedType(QualType Wrapped, QualType Canon, Expr *CountExpr,
|
H A D | TypeProperties.td | 28 let Class = CountAttributedType in {
|
H A D | RecursiveASTVisitor.h | 1140 DEF_TRAVERSE_TYPE(CountAttributedType, { 1442 DEF_TRAVERSE_TYPELOC(CountAttributedType,
|
H A D | TypeLoc.h | 1140 CountAttributedType> {
|
H A D | ASTContext.h | 257 mutable llvm::FoldingSet<CountAttributedType> CountAttributedTypes;
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseDecl.cpp | 4866 auto *CAT = VD->getType()->getAs<CountAttributedType>(); in DiagnoseCountAttributedTypeInUnnamedAnon()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDebugInfo.cpp | 3608 T = cast<CountAttributedType>(T)->desugar(); in UnwrapTypeForDebugInfo()
|
H A D | CGExpr.cpp | 1155 const auto *CAT = FD->getType()->getAs<CountAttributedType>(); in FindCountedByField()
|