Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/ExtractAPI/
H A DAPI.h371 struct ObjCMethodRecord : APIRecord { struct
374 ObjCMethodRecord() = delete; argument
376 ObjCMethodRecord(RecordKind Kind, StringRef USR, StringRef Name, in ObjCMethodRecord() function
386 virtual ~ObjCMethodRecord() = 0;
389 struct ObjCInstanceMethodRecord : ObjCMethodRecord {
396 : ObjCMethodRecord(RK_ObjCInstanceMethod, USR, Name, Loc, in ObjCInstanceMethodRecord()
407 struct ObjCClassMethodRecord : ObjCMethodRecord {
414 : ObjCMethodRecord(RK_ObjCClassMethod, USR, Name, Loc, in ObjCClassMethodRecord()
450 SmallVector<std::unique_ptr<ObjCMethodRecord>> Methods;
588 struct has_function_signature<ObjCMethodRecord> : public std::true_type {};
[all …]
/openbsd-src/gnu/llvm/clang/lib/ExtractAPI/
H A DAPI.cpp156 ObjCMethodRecord *APISet::addObjCMethod( in addObjCMethod()
162 std::unique_ptr<ObjCMethodRecord> Record; in addObjCMethod()
286 ObjCMethodRecord::~ObjCMethodRecord() {} in ~ObjCMethodRecord()