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

/external/clang/tools/libclang/
H A DCIndexCXX.cpp68 switch (PartialSpec->getTagKind()) {
/external/clang/lib/Index/
H A DUSRGeneration.cpp441 switch (D->getTagKind()) {
453 switch (D->getTagKind()) {
465 switch (D->getTagKind()) {
H A DIndexSymbol.cpp60 switch (TD->getTagKind()) {
/external/clang/include/clang/AST/
H A DDecl.h2927 return TypeWithKeyword::getTagTypeKindName(getTagKind());
2930 TagKind getTagKind() const {
2936 bool isStruct() const { return getTagKind() == TTK_Struct; }
2937 bool isInterface() const { return getTagKind() == TTK_Interface; }
2938 bool isClass() const { return getTagKind() == TTK_Class; }
2939 bool isUnion() const { return getTagKind() == TTK_Union; }
2940 bool isEnum() const { return getTagKind() == TTK_Enum; }
/external/clang/include/clang/Analysis/
H A DProgramPoint.h48 const void *getTagKind() { return TagKind; } function in class:clang::ProgramPointTag
/external/clang/lib/AST/
H A DDeclCXX.cpp440 (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class ||
441 cast<TagDecl>(D)->getTagKind() == TTK_Interface))
1026 if (getTagKind() == TTK_Class || getTagKind() == TTK_Interface ||
H A DRecordLayoutBuilder.cpp1969 << getPaddingDiagFromTagKind(D->getParent()->getTagKind())
1976 << getPaddingDiagFromTagKind(D->getParent()->getTagKind())
H A DASTImporter.cpp1079 << D1->getDeclName() << (unsigned)D1->getTagKind();
2847 Importer.getToContext(), D->getTagKind(), DC, StartLoc, Loc,
2853 D->getTagKind(),
2860 D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(),
4568 D->getTagKind(), DC,
H A DMicrosoftMangle.cpp2071 mangleTagTypeKind(TD->getTagKind());
H A DExprConstant.cpp6475 switch (RT->getDecl()->getTagKind()) {
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp2668 return (TagX->getTagKind() == TagY->getTagKind()) ||
2669 ((TagX->getTagKind() == TTK_Struct || TagX->getTagKind() == TTK_Class ||
2670 TagX->getTagKind() == TTK_Interface) &&
2671 (TagY->getTagKind() == TTK_Struct || TagY->getTagKind() == TTK_Class ||
2672 TagY->getTagKind() == TTK_Interface));
H A DASTWriterDecl.cpp396 Record.push_back((unsigned)D->getTagKind()); // FIXME: stable encoding
1766 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // getTagKind
1814 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // getTagKind
H A DASTWriter.cpp4716 Record.push_back(RD->getTagKind());
/external/clang/lib/Sema/
H A DSemaDecl.cpp557 switch (TD->getTagKind()) {
718 switch (Tag->getTagKind()) {
4004 << Tag->getTagKind()
12089 TagTypeKind OldTag = Previous->getTagKind();
12119 if (I->getTagKind() != NewTag) {
12124 << getRedeclDiagFromTagKind(I->getTagKind());
12140 if (Redecl->getTagKind() == NewTag) {
12152 << getRedeclDiagFromTagKind(Redecl->getTagKind())
12154 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
12658 = (PrevTagDecl->getTagKind() !
[all...]
H A DSemaTemplateInstantiateDecl.cpp1104 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
1157 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
1389 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
2746 D->getTagKind(),
3035 PartialSpec->getTagKind(),
H A DSemaCodeComplete.cpp1135 return RD->getTagKind() == TTK_Class ||
1136 RD->getTagKind() == TTK_Struct ||
1137 RD->getTagKind() == TTK_Interface;
1149 return RD->getTagKind() == TTK_Union;
1497 switch (Tag->getTagKind()) {
3088 switch (TD->getTagKind()) {
H A DSemaTemplate.cpp1040 Kind = PrevRecordDecl->getTagKind();
2249 ClassTemplate->getTemplatedDecl()->getTagKind(),
6291 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
7365 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
H A DSemaType.cpp2844 switch (cast<TagDecl>(SemaRef.CurContext)->getTagKind()) {
3384 if (recordDecl->getTagKind() == TTK_Struct && numNormalPointers > 0) {
7162 << getLiteralDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
H A DSemaTemplateInstantiate.cpp1986 Instantiation->setTagKind(Pattern->getTagKind());
H A DSemaDeclCXX.cpp814 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
1395 Class->getTagKind() == TTK_Class,
1469 Class->getTagKind() == TTK_Class,
1611 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
4925 << Record->getTagKind() << Record;
12452 << (unsigned) RD->getTagKind()
H A DSemaDeclAttr.cpp169 if (RD->getTagKind() != TTK_Struct)

Completed in 566 milliseconds