Home
last modified time | relevance | path

Searched refs:ObjCMethodRecord (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPI.h804 struct ObjCMethodRecord : APIRecord { struct
807 ObjCMethodRecord() = delete; argument
809 ObjCMethodRecord(RecordKind Kind, StringRef USR, StringRef Name, in ObjCMethodRecord() function
819 virtual ~ObjCMethodRecord() = 0;
822 struct ObjCInstanceMethodRecord : ObjCMethodRecord {
829 : ObjCMethodRecord(RK_ObjCInstanceMethod, USR, Name, Loc, in ObjCInstanceMethodRecord()
840 struct ObjCClassMethodRecord : ObjCMethodRecord {
847 : ObjCMethodRecord(RK_ObjCClassMethod, USR, Name, Loc, in ObjCClassMethodRecord()
903 SmallVector<std::unique_ptr<ObjCMethodRecord>> Methods;
1131 struct has_function_signature<ObjCMethodRecord> : public std::true_type {};
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp414 ObjCMethodRecord *APISet::addObjCMethod( in addObjCMethod()
420 std::unique_ptr<ObjCMethodRecord> Record; in addObjCMethod()
541 ObjCMethodRecord::~ObjCMethodRecord() {} in ~ObjCMethodRecord()