Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DTypePrinter.cpp1276 TagDecl *OwnedTagDecl = T->getOwnedTagDecl(); in printElaboratedBefore() local
1277 assert(OwnedTagDecl->getTypeForDecl() == T->getNamedType().getTypePtr() && in printElaboratedBefore()
1281 OwnedTagDecl->print(OS, SubPolicy, Indentation); in printElaboratedBefore()
H A DASTContext.cpp4172 TagDecl *OwnedTagDecl) const { in getElaboratedType()
4174 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); in getElaboratedType()
4189 void *Mem = Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), in getElaboratedType()
4191 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); in getElaboratedType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp2845 TagDecl *OwnedTagDecl = nullptr; in GetDeclSpecTypeForDeclarator() local
2856 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
2858 OwnedTagDecl->setEmbeddedInDeclarator(true); in GetDeclSpecTypeForDeclarator()
3092 OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) { in GetDeclSpecTypeForDeclarator()
3148 SemaRef.Diag(OwnedTagDecl->getLocation(), DiagID) in GetDeclSpecTypeForDeclarator()
3149 << SemaRef.Context.getTypeDeclType(OwnedTagDecl); in GetDeclSpecTypeForDeclarator()
8045 TagDecl *OwnedTagDecl) { in getElaboratedType() argument
8056 return Context.getElaboratedType(Keyword, NNS, T, OwnedTagDecl); in getElaboratedType()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h5147 QualType NamedType, QualType CanonType, TagDecl *OwnedTagDecl)
5155 if (OwnedTagDecl) {
5157 *getTrailingObjects<TagDecl *>() = OwnedTagDecl;
5190 TagDecl *OwnedTagDecl) {
5194 ID.AddPointer(OwnedTagDecl);
H A DASTContext.h1457 TagDecl *OwnedTagDecl = nullptr) const;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp6201 TagDecl *OwnedTagDecl = ReadDeclAs<TagDecl>(*Loc.F, Record, Idx); in readTypeRecord() local
6202 return Context.getElaboratedType(Keyword, NNS, NamedType, OwnedTagDecl); in readTypeRecord()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h1692 TagDecl *OwnedTagDecl = nullptr);