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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp529 OUTPUT_ENUM_CLASS_VALUE(TagKind, Class, "class");
530 OUTPUT_ENUM_CLASS_VALUE(TagKind, Struct, "struct");
531 OUTPUT_ENUM_CLASS_VALUE(TagKind, Union, "union");
532 OUTPUT_ENUM_CLASS_VALUE(TagKind, Enum, "enum");
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h222 enum class TagKind { Class, Struct, Union, Enum }; class
475 explicit TagTypeNode(TagKind Tag) : TypeNode(NodeKind::TagType), Tag(Tag) {}
481 TagKind Tag;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DProgramPoint.h41 ProgramPointTag(void *tagKind = nullptr) : TagKind(tagKind) {}
46 const void *getTagKind() const { return TagKind; }
49 const void *const TagKind; member in class:clang::ProgramPointTag
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp864 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
884 ClassTemplateSpecializationDecl::Create(ASTContext &Context, TagKind TK,
997 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK,
1017 Create(ASTContext &Context, TagKind TK,DeclContext *DC,
H A DDeclCXX.cpp118 CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C,
126 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
H A DDecl.cpp4117 TagDecl::TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
4366 RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C,
4387 RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
H A DASTContext.cpp1274 RecordDecl::TagKind TK) const {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3226 using TagKind = TagTypeKind;
3252 TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
3398 TagKind getTagKind() const {
3399 return static_cast<TagKind>(TagDeclBits.TagDeclKind);
3402 void setTagKind(TagKind TK) { TagDeclBits.TagDeclKind = TK; }
3777 RecordDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
3782 static RecordDecl *Create(const ASTContext &C, TagKind TK, DeclContext *DC,
H A DDeclTemplate.h1850 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1864 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
2083 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK,
2104 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
H A DDeclCXX.h481 CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, DeclContext *DC,
542 static CXXRecordDecl *Create(const ASTContext &C, TagKind TK, DeclContext *DC,
H A DASTContext.h1112 RecordDecl::TagKind TK = TTK_Struct) const;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp2641 tok::TokenKind TagKind = tok::unknown; local
2646 TagName="enum" ; FixitTagName = "enum " ; TagKind=tok::kw_enum ;break;
2648 TagName="union" ; FixitTagName = "union " ;TagKind=tok::kw_union ;break;
2650 TagName="struct"; FixitTagName = "struct ";TagKind=tok::kw_struct;break;
2653 TagKind=tok::kw___interface;break;
2655 TagName="class" ; FixitTagName = "class " ;TagKind=tok::kw_class ;break;
2675 if (TagKind == tok::kw_enum)
2679 ParseClassSpecifier(TagKind, Loc, DS, TemplateInfo, AS,
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp5085 "_openmp_static_memory_type_$_", RecordDecl::TagKind::TTK_Union);
5088 "_shared_openmp_static_memory_type_$_", RecordDecl::TagKind::TTK_Union);
5192 "_openmp_teams_reduction_type_$_", RecordDecl::TagKind::TTK_Union);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp1204 ast, (TagDecl::TagKind)kind, decl_ctx, SourceLocation(), SourceLocation(),
1379 ast, (TagDecl::TagKind)kind,
1458 ast, (TagDecl::TagKind)kind, decl_ctx, SourceLocation(),
2314 tag_decl->setTagKind((clang::TagDecl::TagKind)kind);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp3830 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); local
3832 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
3862 << TAT << NTK_TypeAliasTemplate << TagKind; local
3877 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp702 TD->setTagKind((TagDecl::TagKind)Record.readInt());

Completed in 274 milliseconds