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.h1002 struct ObjCPropertyRecord : APIRecord { struct
1015 ObjCPropertyRecord(RecordKind Kind, StringRef USR, StringRef Name, in ObjCPropertyRecord() argument
1031 virtual ~ObjCPropertyRecord() = 0; argument
1034 struct ObjCInstancePropertyRecord : ObjCPropertyRecord {
1041 : ObjCPropertyRecord(RK_ObjCInstanceProperty, USR, Name, Parent, Loc, in ObjCInstancePropertyRecord()
1055 struct ObjCClassPropertyRecord : ObjCPropertyRecord {
1064 : ObjCPropertyRecord(RK_ObjCClassProperty, USR, Name, Parent, Loc, in ObjCClassPropertyRecord()
H A DExtractAPIVisitor.h1461 unsigned Attributes = ObjCPropertyRecord::NoAttr; in recordObjCProperties()
1464 Attributes |= ObjCPropertyRecord::ReadOnly; in recordObjCProperties()
1471 static_cast<ObjCPropertyRecord::AttributeKind>(Attributes), in recordObjCProperties()
1479 static_cast<ObjCPropertyRecord::AttributeKind>(Attributes), in recordObjCProperties()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp174 ObjCPropertyRecord::~ObjCPropertyRecord() {} in ~ObjCPropertyRecord()