Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPIRecords.inc63 ABSTRACT_RECORD(ObjCMethodRecord, APIRecord)
64 CONCRETE_RECORD(ObjCInstanceMethodRecord, ObjCMethodRecord,
66 CONCRETE_RECORD(ObjCClassMethodRecord, ObjCMethodRecord, RK_ObjCClassMethod)
H A DAPI.h1074 struct ObjCMethodRecord : APIRecord { struct
1077 ObjCMethodRecord() = delete; argument
1079 ObjCMethodRecord(RecordKind Kind, StringRef USR, StringRef Name, in ObjCMethodRecord() argument
1090 virtual ~ObjCMethodRecord() = 0;
1093 struct ObjCInstanceMethodRecord : ObjCMethodRecord {
1101 : ObjCMethodRecord(RK_ObjCInstanceMethod, USR, Name, Parent, Loc, in ObjCInstanceMethodRecord()
1113 struct ObjCClassMethodRecord : ObjCMethodRecord {
1120 : ObjCMethodRecord(RK_ObjCClassMethod, USR, Name, Parent, Loc, in ObjCClassMethodRecord()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp122 ObjCMethodRecord::~ObjCMethodRecord() {} in ~ObjCMethodRecord()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.h265 bool visitObjCMethodRecord(const ObjCMethodRecord *Record);
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp961 const ObjCMethodRecord *Record) { in visitObjCMethodRecord()