Searched refs:getTagKind (Results 1 - 20 of 20) sorted by relevance

/external/clang/tools/libclang/
H A DCIndexCXX.cpp68 switch (PartialSpec->getTagKind()) {
H A DIndexingContext.cpp935 switch (TD->getTagKind()) {
/external/clang/lib/Index/
H A DUSRGeneration.cpp415 switch (D->getTagKind()) {
427 switch (D->getTagKind()) {
439 switch (D->getTagKind()) {
/external/clang/include/clang/AST/
H A DDecl.h2713 return TypeWithKeyword::getTagTypeKindName(getTagKind());
2716 TagKind getTagKind() const {
2722 bool isStruct() const { return getTagKind() == TTK_Struct; }
2723 bool isInterface() const { return getTagKind() == TTK_Interface; }
2724 bool isClass() const { return getTagKind() == TTK_Class; }
2725 bool isUnion() const { return getTagKind() == TTK_Union; }
2726 bool isEnum() const { return getTagKind() == TTK_Enum; }
/external/clang/lib/AST/
H A DDeclCXX.cpp428 (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class ||
429 cast<TagDecl>(D)->getTagKind() == TTK_Interface))
969 if (getTagKind() == TTK_Class || getTagKind() == TTK_Interface ||
H A DASTImporter.cpp955 << D1->getDeclName() << (unsigned)D1->getTagKind();
2564 D->getTagKind(),
2570 D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(),
4012 DTemplated->getTagKind(),
4111 D->getTagKind(), DC,
H A DRecordLayoutBuilder.cpp1915 << getPaddingDiagFromTagKind(D->getParent()->getTagKind())
1922 << getPaddingDiagFromTagKind(D->getParent()->getTagKind())
H A DMicrosoftMangle.cpp1725 switch (TD->getTagKind()) {
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp2308 return (TagX->getTagKind() == TagY->getTagKind()) ||
2309 ((TagX->getTagKind() == TTK_Struct || TagX->getTagKind() == TTK_Class ||
2310 TagX->getTagKind() == TTK_Interface) &&
2311 (TagY->getTagKind() == TTK_Struct || TagY->getTagKind() == TTK_Class ||
2312 TagY->getTagKind() == TTK_Interface));
H A DASTWriterDecl.cpp249 Record.push_back((unsigned)D->getTagKind()); // FIXME: stable encoding
1549 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // getTagKind
1597 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // getTagKind
H A DASTWriter.cpp4559 Record.push_back(RD->getTagKind());
/external/clang/include/clang/Analysis/
H A DProgramPoint.h657 const void *getTagKind() { return TagKind; } function in class:clang::ProgramPointTag
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp866 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
919 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
1150 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
2423 D->getTagKind(),
2723 PartialSpec->getTagKind(),
H A DSemaDecl.cpp469 switch (TD->getTagKind()) {
626 switch (Tag->getTagKind()) {
3452 << Tag->getTagKind()
10648 TagTypeKind OldTag = Previous->getTagKind();
10678 if (I->getTagKind() != NewTag) {
10683 << getRedeclDiagFromTagKind(I->getTagKind());
10699 if (Redecl->getTagKind() == NewTag) {
10711 << getRedeclDiagFromTagKind(Redecl->getTagKind())
10713 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
11075 = (PrevTagDecl->getTagKind() !
[all...]
H A DSemaCodeComplete.cpp1121 return RD->getTagKind() == TTK_Class ||
1122 RD->getTagKind() == TTK_Struct ||
1123 RD->getTagKind() == TTK_Interface;
1135 return RD->getTagKind() == TTK_Union;
1482 switch (Tag->getTagKind()) {
2969 switch (TD->getTagKind()) {
H A DSemaTemplate.cpp993 Kind = PrevRecordDecl->getTagKind();
2128 ClassTemplate->getTemplatedDecl()->getTagKind(),
6042 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
7073 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
H A DSemaTemplateInstantiate.cpp1942 Instantiation->setTagKind(Pattern->getTagKind());
H A DSemaType.cpp2185 switch (cast<TagDecl>(SemaRef.CurContext)->getTagKind()) {
5408 << getLiteralDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
H A DSemaDeclCXX.cpp768 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
1399 Class->getTagKind() == TTK_Class,
1473 Class->getTagKind() == TTK_Class,
1581 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
4510 << Record->getTagKind() << Record;
11567 << (unsigned) RD->getTagKind()
H A DSemaDeclAttr.cpp140 if (RD->getTagKind() != TTK_Struct)

Completed in 486 milliseconds