Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp759 SmallString<64> SetterName("set"); in constructSetterName() local
760 SetterName += Name; in constructSetterName()
761 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
762 return SetterName; in constructSetterName()
769 IdentifierInfo *SetterName = in constructSetterSelector() local
771 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPI.h1012 StringRef SetterName; member
1020 StringRef GetterName, StringRef SetterName, in ObjCPropertyRecord()
1025 Attributes(Attributes), GetterName(GetterName), SetterName(SetterName), in ObjCPropertyRecord()
1039 AttributeKind Attributes, StringRef GetterName, StringRef SetterName, in ObjCInstancePropertyRecord()
1043 SubHeading, Attributes, GetterName, SetterName, in ObjCInstancePropertyRecord()
1062 StringRef SetterName, bool IsOptional, in ObjCClassPropertyRecord()
1066 SubHeading, Attributes, GetterName, SetterName, in ObjCClassPropertyRecord()
H A DExtractAPIVisitor.h1458 auto SetterName = Property->getSetterName().getAsString(); in recordObjCProperties() local
1472 GetterName, SetterName, Property->isOptional(), in recordObjCProperties()
1480 GetterName, SetterName, Property->isOptional(), in recordObjCProperties()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1400 MDString *SetterName;
1405 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1408 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
1411 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
1417 SetterName == RHS->getRawSetterName() &&
1422 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
H A DDebugInfoMetadata.cpp2547 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
2551 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
2553 SetterName, Attributes, Type)); in getImpl()
2554 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
H A DDIBuilder.cpp527 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
530 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1503 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1508 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h921 GetterName(nullptr), SetterName(nullptr) {} in ObjCDeclSpec()
974 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
975 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
978 SetterName = name; in setSetterName()
996 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp1420 UnqualifiedId SetterName; in buildSet() local
1422 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet()
1428 SourceLocation(), SetterName, nullptr); in buildSet()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h4205 StringRef GetterName, StringRef SetterName, unsigned Attributes,
4209 getCanonicalMDString(Context, SetterName), Attributes, Type,
4214 MDString *GetterName, MDString *SetterName, unsigned Attributes,
4226 StringRef GetterName, StringRef SetterName,
4228 (Name, File, Line, GetterName, SetterName, Attributes,
4232 MDString *GetterName, MDString *SetterName,
4234 (Name, File, Line, GetterName, SetterName, Attributes,
H A DDIBuilder.h519 StringRef GetterName, StringRef SetterName,
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h757 Selector SetterName; variable
890 Selector getSetterName() const { return SetterName; } in getSetterName()
894 SetterName = Sel;
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h930 size_t GetterNameLen, const char *SetterName, size_t SetterNameLen,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1108 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
1109 if (!SetterName.empty()) in constructTypeDIE()
1110 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp727 const IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
729 if (SetterName) in ParseObjCInterfaceDeclList()
730 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1488 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local
1490 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()