Home
last modified time | relevance | path

Searched refs:CoupledDecls (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td41 def : Property<"CoupledDecls", Array<TypeCoupledDeclRefInfo>> {
44 …{ return ctx.getCountAttributedType(WrappedTy, CountExpr, CountInBytes, OrNull, CoupledDecls); }]>;
H A DType.h3281 ArrayRef<TypeCoupledDeclRefInfo> CoupledDecls);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3846 bool OrNull, ArrayRef<TypeCoupledDeclRefInfo> CoupledDecls) in CountAttributedType() argument
3849 CountAttributedTypeBits.NumCoupledDecls = CoupledDecls.size(); in CountAttributedType()
3853 Decls = llvm::ArrayRef(DeclSlot, CoupledDecls.size()); in CountAttributedType()
3854 for (unsigned i = 0; i != CoupledDecls.size(); ++i) in CountAttributedType()
3855 DeclSlot[i] = CoupledDecls[i]; in CountAttributedType()
H A DASTImporter.cpp1553 SmallVector<TypeCoupledDeclRefInfo, 1> CoupledDecls; in VisitCountAttributedType() local
1558 CoupledDecls.emplace_back(*ToDeclOrErr, TI.isDeref()); in VisitCountAttributedType()
1563 ArrayRef(CoupledDecls.data(), CoupledDecls.size())); in VisitCountAttributedType()