Lines Matching defs:CatDInfo
747 ObjCCategoryDeclInfo CatDInfo(/*isImplementation=*/false);
760 CatDInfo.ObjCCatDeclInfo.containerInfo = &CatDInfo.ObjCContDeclInfo;
762 CatDInfo.ObjCCatDeclInfo.objcClass = &ClassEntity;
763 CatDInfo.ObjCCatDeclInfo.classCursor =
766 CatDInfo.ObjCCatDeclInfo.objcClass = nullptr;
767 CatDInfo.ObjCCatDeclInfo.classCursor = clang_getNullCursor();
769 CatDInfo.ObjCCatDeclInfo.classLoc = getIndexLoc(ClassLoc);
770 CatDInfo.ObjCProtoListInfo = ProtInfo.getListInfo();
771 CatDInfo.ObjCCatDeclInfo.protocols = &CatDInfo.ObjCProtoListInfo;
773 return handleObjCContainer(D, CategoryLoc, getCursor(D), CatDInfo);
780 ObjCCategoryDeclInfo CatDInfo(/*isImplementation=*/true);
790 CatDInfo.ObjCCatDeclInfo.containerInfo = &CatDInfo.ObjCContDeclInfo;
792 CatDInfo.ObjCCatDeclInfo.objcClass = &ClassEntity;
793 CatDInfo.ObjCCatDeclInfo.classCursor =
796 CatDInfo.ObjCCatDeclInfo.objcClass = nullptr;
797 CatDInfo.ObjCCatDeclInfo.classCursor = clang_getNullCursor();
799 CatDInfo.ObjCCatDeclInfo.classLoc = getIndexLoc(ClassLoc);
800 CatDInfo.ObjCCatDeclInfo.protocols = nullptr;
802 return handleObjCContainer(D, CategoryLoc, getCursor(D), CatDInfo);