Home
last modified time | relevance | path

Searched refs:OwnedTagDecl (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1596 TagDecl *OwnedTagDecl = T->getOwnedTagDecl(); in printElaboratedBefore() local
1597 assert(OwnedTagDecl->getTypeForDecl() == T->getNamedType().getTypePtr() && in printElaboratedBefore()
1601 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore()
H A DASTContext.cpp5016 TagDecl *OwnedTagDecl) const { in getElaboratedType()
5018 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); in getElaboratedType()
5034 Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), in getElaboratedType()
5036 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); in getElaboratedType()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3549 TagDecl *OwnedTagDecl = nullptr; in GetDeclSpecTypeForDeclarator() local
3560 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
3562 OwnedTagDecl->setEmbeddedInDeclarator(true); in GetDeclSpecTypeForDeclarator()
3815 OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) { in GetDeclSpecTypeForDeclarator()
3873 SemaRef.Diag(OwnedTagDecl->getLocation(), DiagID) in GetDeclSpecTypeForDeclarator()
3874 << SemaRef.Context.getTypeDeclType(OwnedTagDecl); in GetDeclSpecTypeForDeclarator()
9697 TagDecl *OwnedTagDecl) { in getElaboratedType() argument
9701 Keyword, SS.isValid() ? SS.getScopeRep() : nullptr, T, OwnedTagDecl); in getElaboratedType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DType.h5859 QualType NamedType, QualType CanonType, TagDecl *OwnedTagDecl)
5871 if (OwnedTagDecl) {
5873 *getTrailingObjects<TagDecl *>() = OwnedTagDecl;
5903 TagDecl *OwnedTagDecl) {
5907 ID.AddPointer(OwnedTagDecl);
H A DASTContext.h1646 TagDecl *OwnedTagDecl = nullptr) const;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2597 TagDecl *OwnedTagDecl = nullptr);