Home
last modified time | relevance | path

Searched refs:ClassToExtend (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DRecord.h155 ObjCCategoryRecord(StringRef ClassToExtend, StringRef Name) in ObjCCategoryRecord() argument
157 ClassToExtend(ClassToExtend) {} in ObjCCategoryRecord()
160 StringRef ClassToExtend;
H A DRecordsSlice.h84 ObjCCategoryRecord *addObjCCategory(StringRef ClassToExtend,
98 ObjCCategoryRecord *findObjCCategory(StringRef ClassToExtend,
/freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordsSlice.cpp95 ObjCCategoryRecord *RecordsSlice::findObjCCategory(StringRef ClassToExtend, in findObjCCategory() argument
97 return findRecord<ObjCCategoryRecord>(std::make_pair(ClassToExtend, Category), in findObjCCategory()
189 ObjCCategoryRecord *RecordsSlice::addObjCCategory(StringRef ClassToExtend, in addObjCCategory() argument
195 Categories.insert({std::make_pair(ClassToExtend, Category), nullptr}); in addObjCCategory()
198 std::make_unique<ObjCCategoryRecord>(ClassToExtend, Category); in addObjCCategory()
201 if (auto *ObjCClass = findObjCInterface(ClassToExtend)) in addObjCCategory()