Searched refs:ClassToExtend (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | RecordsSlice.cpp | 135 ObjCCategoryRecord *RecordsSlice::findObjCCategory(StringRef ClassToExtend, in findObjCCategory() argument 137 return findRecord<ObjCCategoryRecord>(std::make_pair(ClassToExtend, Category), in findObjCCategory() 225 ObjCCategoryRecord *RecordsSlice::addObjCCategory(StringRef ClassToExtend, in addObjCCategory() argument 228 ClassToExtend = copyString(ClassToExtend); in addObjCCategory() 232 Categories.insert({std::make_pair(ClassToExtend, Category), nullptr}); in addObjCCategory() 235 std::make_unique<ObjCCategoryRecord>(ClassToExtend, Category); in addObjCCategory() 238 if (auto *ObjCClass = findObjCInterface(ClassToExtend)) in addObjCCategory()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | Record.h | 180 ObjCCategoryRecord(StringRef ClassToExtend, StringRef Name) in ObjCCategoryRecord() argument 182 ClassToExtend(ClassToExtend) {} in ObjCCategoryRecord() 184 StringRef getSuperClassName() const { return ClassToExtend; } in getSuperClassName() 187 StringRef ClassToExtend;
|
H A D | RecordsSlice.h | 88 ObjCCategoryRecord *addObjCCategory(StringRef ClassToExtend, 102 ObjCCategoryRecord *findObjCCategory(StringRef ClassToExtend,
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | Frontend.cpp | 49 FrontendRecordsSlice::addObjCCategory(StringRef ClassToExtend, in addObjCCategory() argument 54 llvm::MachO::RecordsSlice::addObjCCategory(ClassToExtend, CategoryName); in addObjCCategory()
|
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
H A D | FrontendRecords.h | 83 addObjCCategory(StringRef ClassToExtend, StringRef CategoryName,
|