Home
last modified time | relevance | path

Searched refs:SetterName (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp727 SmallString<64> SetterName("set"); in constructSetterName() local
728 SetterName += Name; in constructSetterName()
729 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
730 return SetterName; in constructSetterName()
737 IdentifierInfo *SetterName = in constructSetterSelector() local
739 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPI.h713 StringRef SetterName; member
721 StringRef GetterName, StringRef SetterName, in ObjCPropertyRecord()
726 Attributes(Attributes), GetterName(GetterName), SetterName(SetterName), in ObjCPropertyRecord()
742 StringRef SetterName, bool IsOptional, in ObjCInstancePropertyRecord()
746 SubHeading, Attributes, GetterName, SetterName, in ObjCInstancePropertyRecord()
764 StringRef SetterName, bool IsOptional, in ObjCClassPropertyRecord()
768 SubHeading, Attributes, GetterName, SetterName, in ObjCClassPropertyRecord()
1456 StringRef GetterName, StringRef SetterName, bool IsOptional,
H A DExtractAPIVisitor.h1342 StringRef SetterName = in recordObjCProperties() local
1355 SetterName, Property->isOptional(), in recordObjCProperties()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1207 MDString *SetterName;
1212 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1215 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
1218 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
1224 SetterName == RHS->getRawSetterName() &&
1229 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
H A DDebugInfoMetadata.cpp2082 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
2086 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
2088 SetterName, Attributes, Type)); in getImpl()
2089 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
H A DDIBuilder.cpp428 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
431 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1404 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1409 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp441 StringRef SetterName, bool IsOptional, bool IsInstanceProperty, in addObjCProperty() argument
447 SubHeading, Attributes, GetterName, SetterName, IsOptional, in addObjCProperty()
452 SubHeading, Attributes, GetterName, SetterName, IsOptional, in addObjCProperty()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h883 GetterName(nullptr), SetterName(nullptr) {} in ObjCDeclSpec()
936 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
937 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
940 SetterName = name; in setSetterName()
958 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h3411 StringRef GetterName, StringRef SetterName, unsigned Attributes,
3415 getCanonicalMDString(Context, SetterName), Attributes, Type,
3420 MDString *GetterName, MDString *SetterName,
3433 StringRef GetterName, StringRef SetterName,
3435 (Name, File, Line, GetterName, SetterName, Attributes,
3439 MDString *GetterName, MDString *SetterName,
3441 (Name, File, Line, GetterName, SetterName, Attributes,
H A DDIBuilder.h415 StringRef SetterName,
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp1505 UnqualifiedId SetterName; in buildSet() local
1507 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet()
1513 SourceLocation(), SetterName, nullptr); in buildSet()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h758 Selector SetterName; variable
889 Selector getSetterName() const { return SetterName; } in getSetterName()
893 SetterName = Sel;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h854 const char *SetterName, size_t SetterNameLen,
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp952 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
953 if (!SetterName.empty()) in constructTypeDIE()
954 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp806 IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
808 if (SetterName) in ParseObjCInterfaceDeclList()
809 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1489 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local
1491 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()