Home
last modified time | relevance | path

Searched refs:TagKind (Results 1 – 16 of 16) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp534 OUTPUT_ENUM_CLASS_VALUE(TagKind, Class, "class"); in outputPre()
535 OUTPUT_ENUM_CLASS_VALUE(TagKind, Struct, "struct"); in outputPre()
536 OUTPUT_ENUM_CLASS_VALUE(TagKind, Union, "union"); in outputPre()
537 OUTPUT_ENUM_CLASS_VALUE(TagKind, Enum, "enum"); in outputPre()
H A DMicrosoftDemangle.cpp1987 TT = Arena.alloc<TagTypeNode>(TagKind::Union); in demangleClassType()
1990 TT = Arena.alloc<TagTypeNode>(TagKind::Struct); in demangleClassType()
1993 TT = Arena.alloc<TagTypeNode>(TagKind::Class); in demangleClassType()
2000 TT = Arena.alloc<TagTypeNode>(TagKind::Enum); in demangleClassType()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h223 enum class TagKind { Class, Struct, Union, Enum }; enum
476 explicit TagTypeNode(TagKind Tag) : TypeNode(NodeKind::TagType), Tag(Tag) {} in TagTypeNode()
482 TagKind Tag;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DProgramPoint.h41 ProgramPointTag(void *tagKind = nullptr) : TagKind(tagKind) {} in TagKind() function
46 const void *getTagKind() const { return TagKind; } in getTagKind()
49 const void *const TagKind;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h3296 using TagKind = TagTypeKind;
3322 TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
3468 TagKind getTagKind() const { in getTagKind()
3469 return static_cast<TagKind>(TagDeclBits.TagDeclKind); in getTagKind()
3472 void setTagKind(TagKind TK) { TagDeclBits.TagDeclKind = TK; } in setTagKind()
3849 RecordDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
3854 static RecordDecl *Create(const ASTContext &C, TagKind TK, DeclContext *DC,
H A DDeclTemplate.h1847 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1861 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
2088 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK,
2109 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
H A DDeclCXX.h482 CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, DeclContext *DC,
543 static CXXRecordDecl *Create(const ASTContext &C, TagKind TK, DeclContext *DC,
H A DASTContext.h1111 RecordDecl::TagKind TK = TTK_Struct) const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclTemplate.cpp889 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, in ClassTemplateSpecializationDecl()
909 ClassTemplateSpecializationDecl::Create(ASTContext &Context, TagKind TK, in Create()
1026 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK, in ClassTemplatePartialSpecializationDecl()
1046 Create(ASTContext &Context, TagKind TK,DeclContext *DC, in Create()
H A DDecl.cpp4248 TagDecl::TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC, in TagDecl()
4497 RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C, in RecordDecl()
4518 RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC, in Create()
H A DDeclCXX.cpp123 CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, in CXXRecordDecl()
131 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK, in Create()
H A DASTContext.cpp1223 RecordDecl::TagKind TK) const { in buildImplicitRecord()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDecl.cpp2622 tok::TokenKind TagKind = tok::unknown; in ParseImplicitInt() local
2627 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break; in ParseImplicitInt()
2629 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break; in ParseImplicitInt()
2631 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break; in ParseImplicitInt()
2634 TagKind=tok::kw___interface;break; in ParseImplicitInt()
2636 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break; in ParseImplicitInt()
2656 if (TagKind == tok::kw_enum) in ParseImplicitInt()
2660 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS, in ParseImplicitInt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp4577 "_openmp_static_memory_type_$_", RecordDecl::TagKind::TTK_Union); in clear()
4580 "_shared_openmp_static_memory_type_$_", RecordDecl::TagKind::TTK_Union); in clear()
4684 "_openmp_teams_reduction_type_$_", RecordDecl::TagKind::TTK_Union); in clear()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplate.cpp4028 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); in ActOnTagTemplateIdType() local
4030 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind); in ActOnTagTemplateIdType()
4060 << TAT << NTK_TypeAliasTemplate << TagKind; in ActOnTagTemplateIdType()
4075 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition, in ActOnTagTemplateIdType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp710 TD->setTagKind((TagDecl::TagKind)Record.readInt()); in VisitTagDecl()