Home
last modified time | relevance | path

Searched refs:ObjCPropertyRecord (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPIRecords.inc57 ABSTRACT_RECORD(ObjCPropertyRecord, APIRecord)
58 CONCRETE_RECORD(ObjCInstancePropertyRecord, ObjCPropertyRecord,
60 CONCRETE_RECORD(ObjCClassPropertyRecord, ObjCPropertyRecord,
H A DAPI.h975 struct ObjCPropertyRecord : APIRecord { struct
988 ObjCPropertyRecord(RecordKind Kind, StringRef USR, StringRef Name, in ObjCPropertyRecord() function
1004 virtual ~ObjCPropertyRecord() = 0; argument
1007 struct ObjCInstancePropertyRecord : ObjCPropertyRecord {
1014 : ObjCPropertyRecord(RK_ObjCInstanceProperty, USR, Name, Parent, Loc, in ObjCInstancePropertyRecord()
1028 struct ObjCClassPropertyRecord : ObjCPropertyRecord {
1037 : ObjCPropertyRecord(RK_ObjCClassProperty, USR, Name, Parent, Loc, in ObjCClassPropertyRecord()
H A DExtractAPIVisitor.h1396 unsigned Attributes = ObjCPropertyRecord::NoAttr; in recordObjCProperties()
1399 Attributes |= ObjCPropertyRecord::ReadOnly; in recordObjCProperties()
1406 static_cast<ObjCPropertyRecord::AttributeKind>(Attributes), in recordObjCProperties()
1414 static_cast<ObjCPropertyRecord::AttributeKind>(Attributes), in recordObjCProperties()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp123 ObjCPropertyRecord::~ObjCPropertyRecord() {} in ~ObjCPropertyRecord()