Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1708 TagDecl *OwnedTagDecl = T->getOwnedTagDecl(); in printElaboratedBefore() local
1709 assert(OwnedTagDecl->getTypeForDecl() == T->getNamedType().getTypePtr() && in printElaboratedBefore()
1713 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore()
H A DASTContext.cpp5814 TagDecl *OwnedTagDecl) const { in getElaboratedType()
5816 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); in getElaboratedType()
5832 Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), in getElaboratedType()
5834 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); in getElaboratedType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3132 TagDecl *OwnedTagDecl = nullptr; in GetDeclSpecTypeForDeclarator() local
3143 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
3145 OwnedTagDecl->setEmbeddedInDeclarator(true); in GetDeclSpecTypeForDeclarator()
3406 OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) { in GetDeclSpecTypeForDeclarator()
3464 SemaRef.Diag(OwnedTagDecl->getLocation(), DiagID) in GetDeclSpecTypeForDeclarator()
3465 << SemaRef.Context.getTypeDeclType(OwnedTagDecl); in GetDeclSpecTypeForDeclarator()
9635 TagDecl *OwnedTagDecl) { in getElaboratedType() argument
9639 Keyword, SS.isValid() ? SS.getScopeRep() : nullptr, T, OwnedTagDecl); in getElaboratedType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h7138 QualType NamedType, QualType CanonType, TagDecl *OwnedTagDecl)
7150 if (OwnedTagDecl) {
7152 *getTrailingObjects() = OwnedTagDecl;
7181 TagDecl *OwnedTagDecl) {
7185 ID.AddPointer(OwnedTagDecl);
H A DASTContext.h1894 TagDecl *OwnedTagDecl = nullptr) const;
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h15164 TagDecl *OwnedTagDecl = nullptr);