Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1660 TagDecl *OwnedTagDecl = T->getOwnedTagDecl(); in printElaboratedBefore() local
1661 assert(OwnedTagDecl->getTypeForDecl() == T->getNamedType().getTypePtr() && in printElaboratedBefore()
1665 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore()
H A DASTContext.cpp5424 TagDecl *OwnedTagDecl) const { in getElaboratedType()
5426 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); in getElaboratedType()
5442 Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), in getElaboratedType()
5444 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); in getElaboratedType()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3080 TagDecl *OwnedTagDecl = nullptr; in GetDeclSpecTypeForDeclarator() local
3091 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
3093 OwnedTagDecl->setEmbeddedInDeclarator(true); in GetDeclSpecTypeForDeclarator()
3349 OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) { in GetDeclSpecTypeForDeclarator()
3407 SemaRef.Diag(OwnedTagDecl->getLocation(), DiagID) in GetDeclSpecTypeForDeclarator()
3408 << SemaRef.Context.getTypeDeclType(OwnedTagDecl); in GetDeclSpecTypeForDeclarator()
9350 TagDecl *OwnedTagDecl) { in getElaboratedType() argument
9354 Keyword, SS.isValid() ? SS.getScopeRep() : nullptr, T, OwnedTagDecl); in getElaboratedType()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DType.h6773 QualType NamedType, QualType CanonType, TagDecl *OwnedTagDecl)
6785 if (OwnedTagDecl) {
6787 *getTrailingObjects<TagDecl *>() = OwnedTagDecl;
6817 TagDecl *OwnedTagDecl) {
6821 ID.AddPointer(OwnedTagDecl);
H A DASTContext.h1708 TagDecl *OwnedTagDecl = nullptr) const;
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h14857 TagDecl *OwnedTagDecl = nullptr);