Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DTypePrinter.cpp1444 TagDecl *OwnedTagDecl = T->getOwnedTagDecl(); in printElaboratedBefore() local
1445 assert(OwnedTagDecl->getTypeForDecl() == T->getNamedType().getTypePtr() && in printElaboratedBefore()
1449 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore()
DASTContext.cpp4735 TagDecl *OwnedTagDecl) const { in getElaboratedType()
4737 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); in getElaboratedType()
4752 void *Mem = Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), in getElaboratedType()
4754 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); in getElaboratedType()
/external/llvm-project/clang/lib/Sema/
DSemaType.cpp3259 TagDecl *OwnedTagDecl = nullptr; in GetDeclSpecTypeForDeclarator() local
3270 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
3272 OwnedTagDecl->setEmbeddedInDeclarator(true); in GetDeclSpecTypeForDeclarator()
3509 OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) { in GetDeclSpecTypeForDeclarator()
3566 SemaRef.Diag(OwnedTagDecl->getLocation(), DiagID) in GetDeclSpecTypeForDeclarator()
3567 << SemaRef.Context.getTypeDeclType(OwnedTagDecl); in GetDeclSpecTypeForDeclarator()
8880 TagDecl *OwnedTagDecl) { in getElaboratedType() argument
8891 return Context.getElaboratedType(Keyword, NNS, T, OwnedTagDecl); in getElaboratedType()
/external/clang/lib/Sema/
DSemaType.cpp2783 TagDecl *OwnedTagDecl = nullptr; in GetDeclSpecTypeForDeclarator() local
2794 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
2796 OwnedTagDecl->setEmbeddedInDeclarator(true); in GetDeclSpecTypeForDeclarator()
2958 OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) { in GetDeclSpecTypeForDeclarator()
3011 SemaRef.Diag(OwnedTagDecl->getLocation(), DiagID) in GetDeclSpecTypeForDeclarator()
3012 << SemaRef.Context.getTypeDeclType(OwnedTagDecl); in GetDeclSpecTypeForDeclarator()
/external/llvm-project/clang/include/clang/AST/
DType.h5398 QualType NamedType, QualType CanonType, TagDecl *OwnedTagDecl)
5403 if (OwnedTagDecl) {
5405 *getTrailingObjects<TagDecl *>() = OwnedTagDecl;
5438 TagDecl *OwnedTagDecl) {
5442 ID.AddPointer(OwnedTagDecl);
DASTContext.h1480 TagDecl *OwnedTagDecl = nullptr) const;
/external/llvm-project/clang/include/clang/Sema/
DSema.h2173 TagDecl *OwnedTagDecl = nullptr);