Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Basic/
H A DIdentifierTable.cpp687 SmallString<64> SetterName("set"); in constructSetterName() local
688 SetterName += Name; in constructSetterName()
689 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
690 return SetterName; in constructSetterName()
697 IdentifierInfo *SetterName = in constructSetterSelector() local
699 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/llvm-project-15.0.7/clang/include/clang/ExtractAPI/
H A DAPI.h240 StringRef SetterName; member
248 StringRef GetterName, StringRef SetterName, in ObjCPropertyRecord()
252 Attributes(Attributes), GetterName(GetterName), SetterName(SetterName), in ObjCPropertyRecord()
597 StringRef GetterName, StringRef SetterName, bool IsOptional);
/llvm-project-15.0.7/clang/lib/ExtractAPI/
H A DAPI.cpp146 StringRef SetterName, bool IsOptional) { in addObjCProperty() argument
149 Attributes, GetterName, SetterName, IsOptional); in addObjCProperty()
H A DExtractAPIConsumer.cpp719 StringRef SetterName = in recordObjCProperties() local
734 GetterName, SetterName, Property->isOptional()); in recordObjCProperties()
/llvm-project-15.0.7/llvm/lib/IR/
H A DLLVMContextImpl.h1151 MDString *SetterName;
1156 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1159 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
1162 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
1168 SetterName == RHS->getRawSetterName() &&
1173 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
H A DDebugInfoMetadata.cpp1751 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
1755 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
1757 SetterName, Attributes, Type)); in getImpl()
1758 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
H A DDIBuilder.cpp442 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
445 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1257 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1262 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h845 GetterName(nullptr), SetterName(nullptr) {} in ObjCDeclSpec()
898 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
899 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
902 SetterName = name; in setSetterName()
920 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/llvm-project-15.0.7/llvm/unittests/IR/
H A DMetadataTest.cpp3060 StringRef SetterName = "setter"; in TEST_F() local
3065 SetterName, Attributes, Type); in TEST_F()
3072 EXPECT_EQ(SetterName, N->getSetterName()); in TEST_F()
3076 SetterName, Attributes, Type)); in TEST_F()
3079 SetterName, Attributes, Type)); in TEST_F()
3081 SetterName, Attributes, Type)); in TEST_F()
3083 SetterName, Attributes, Type)); in TEST_F()
3085 SetterName, Attributes, Type)); in TEST_F()
3089 SetterName, Attributes + 1, Type)); in TEST_F()
3091 SetterName, Attributes, in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h3226 StringRef GetterName, StringRef SetterName, unsigned Attributes,
3230 getCanonicalMDString(Context, SetterName), Attributes, Type,
3235 MDString *GetterName, MDString *SetterName,
3248 StringRef GetterName, StringRef SetterName,
3250 (Name, File, Line, GetterName, SetterName, Attributes,
3254 MDString *GetterName, MDString *SetterName,
3256 (Name, File, Line, GetterName, SetterName, Attributes,
H A DDIBuilder.h408 StringRef SetterName,
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaPseudoObject.cpp1499 UnqualifiedId SetterName; in buildSet() local
1501 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet()
1507 SourceLocation(), SetterName, nullptr); in buildSet()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h758 Selector SetterName; variable
889 Selector getSetterName() const { return SetterName; } in getSetterName()
893 SetterName = Sel;
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DDebugInfo.h843 const char *SetterName, size_t SetterNameLen,
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp950 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
951 if (!SetterName.empty()) in constructTypeDIE()
952 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseObjc.cpp758 IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
760 if (SetterName) in ParseObjCInterfaceDeclList()
761 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp1399 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local
1401 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()