Searched defs:TagType (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp33 // parameter and specifying the TagType and callback functions as described in
39 int TagType, LLVMOpInfoCallback GetOpInfo,
91 LLVMDisasmContext *DC = new LLVMDisasmContext(TripleName, DisInfo, TagType,
38 LLVMCreateDisasm(const char *TripleName, void *DisInfo, int TagType, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp) argument
H A DDisassembler.h49 int TagType; member in class:llvm::LLVMDisasmContext
91 DisInfo(disInfo), TagType(tagType), GetOpInfo(getOpInfo),
104 int getTagType() const { return TagType; }
/external/v8/src/
H A Ddateparser.h238 enum TagType { enum in struct:v8::internal::DateParser::DateToken
/external/clang/lib/AST/
H A DType.cpp1761 TagType::TagType(TypeClass TC, const TagDecl *D, QualType can) function in class:TagType
1790 TagDecl *TagType::getDecl() const {
1794 bool TagType::isBeingDefined() const {
2074 const TagDecl *Tag = cast<TagType>(T)->getDecl();
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp1034 DeclSpec::TST TagType; local
1036 TagType = DeclSpec::TST_struct;
1038 TagType = DeclSpec::TST_interface;
1040 TagType = DeclSpec::TST_class;
1043 TagType = DeclSpec::TST_union;
1048 Actions.CodeCompleteTag(getCurScope(), TagType); local
1087 if (TagType == DeclSpec::TST_struct &&
1154 << (TagType == DeclSpec::TST_class? 0
1155 : TagType == DeclSpec::TST_struct? 1
1156 : TagType
2240 ParseCXXMemberSpecification(SourceLocation RecordLoc, unsigned TagType, Decl *TagDecl) argument
3024 ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType, AccessSpecifier& CurAS) argument
[all...]
H A DParseDecl.cpp2917 unsigned TagType, Decl *TagDecl) {
2931 Diag(Tok, diag::ext_empty_struct_union) << (TagType == TST_union);
2932 Diag(Tok, diag::warn_empty_struct_union_compat) << (TagType == TST_union);
2943 ConsumeExtraSemi(InsideStruct, TagType);
2916 ParseStructUnionBody(SourceLocation RecordLoc, unsigned TagType, Decl *TagDecl) argument
/external/clang/include/clang/AST/
H A DType.h3191 class TagType : public Type { class in class:clang::FunctionType::ExtInfo::FunctionProtoType
3199 TagType(TypeClass TC, const TagDecl *D, QualType can);
3211 static bool classof(const TagType *) { return true; }
3215 /// to detect TagType objects of structs/unions/classes.
3216 class RecordType : public TagType {
3219 : TagType(Record, reinterpret_cast<const TagDecl*>(D), QualType()) { }
3221 : TagType(TC, reinterpret_cast<const TagDecl*>(D), QualType()) { }
3226 return reinterpret_cast<RecordDecl*>(TagType::getDecl());
3242 /// to detect TagType objects of enums.
3243 class EnumType : public TagType {
[all...]

Completed in 143 milliseconds