• Home
  • Raw
  • Download

Lines Matching refs:CatDInfo

738   ObjCCategoryDeclInfo CatDInfo(/*isImplementation=*/false);  in handleObjCCategory()  local
751 CatDInfo.ObjCCatDeclInfo.containerInfo = &CatDInfo.ObjCContDeclInfo; in handleObjCCategory()
753 CatDInfo.ObjCCatDeclInfo.objcClass = &ClassEntity; in handleObjCCategory()
754 CatDInfo.ObjCCatDeclInfo.classCursor = in handleObjCCategory()
757 CatDInfo.ObjCCatDeclInfo.objcClass = nullptr; in handleObjCCategory()
758 CatDInfo.ObjCCatDeclInfo.classCursor = clang_getNullCursor(); in handleObjCCategory()
760 CatDInfo.ObjCCatDeclInfo.classLoc = getIndexLoc(ClassLoc); in handleObjCCategory()
761 CatDInfo.ObjCProtoListInfo = ProtInfo.getListInfo(); in handleObjCCategory()
762 CatDInfo.ObjCCatDeclInfo.protocols = &CatDInfo.ObjCProtoListInfo; in handleObjCCategory()
764 return handleObjCContainer(D, CategoryLoc, getCursor(D), CatDInfo); in handleObjCCategory()
771 ObjCCategoryDeclInfo CatDInfo(/*isImplementation=*/true); in handleObjCCategoryImpl() local
781 CatDInfo.ObjCCatDeclInfo.containerInfo = &CatDInfo.ObjCContDeclInfo; in handleObjCCategoryImpl()
783 CatDInfo.ObjCCatDeclInfo.objcClass = &ClassEntity; in handleObjCCategoryImpl()
784 CatDInfo.ObjCCatDeclInfo.classCursor = in handleObjCCategoryImpl()
787 CatDInfo.ObjCCatDeclInfo.objcClass = nullptr; in handleObjCCategoryImpl()
788 CatDInfo.ObjCCatDeclInfo.classCursor = clang_getNullCursor(); in handleObjCCategoryImpl()
790 CatDInfo.ObjCCatDeclInfo.classLoc = getIndexLoc(ClassLoc); in handleObjCCategoryImpl()
791 CatDInfo.ObjCCatDeclInfo.protocols = nullptr; in handleObjCCategoryImpl()
793 return handleObjCContainer(D, CategoryLoc, getCursor(D), CatDInfo); in handleObjCCategoryImpl()