Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DIdentifierTable.cpp609 SmallString<64> SetterName("set"); in constructSetterName() local
610 SetterName += Name; in constructSetterName()
611 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
612 return SetterName; in constructSetterName()
619 IdentifierInfo *SetterName = in constructSetterSelector() local
621 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DLLVMContextImpl.h1013 MDString *SetterName;
1018 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1021 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
1024 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
1030 SetterName == RHS->getRawSetterName() &&
1035 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
H A DDebugInfoMetadata.cpp1085 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
1089 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
1091 SetterName, Attributes, Type)); in getImpl()
1092 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
H A DDIBuilder.cpp399 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
402 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1035 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1040 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h831 Nullability(0), GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec()
881 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
882 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
885 SetterName = name; in setSetterName()
903 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2833 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2837 getCanonicalMDString(Context, SetterName), Attributes, Type,
2842 MDString *GetterName, MDString *SetterName,
2855 StringRef GetterName, StringRef SetterName,
2857 (Name, File, Line, GetterName, SetterName, Attributes,
2861 MDString *GetterName, MDString *SetterName,
2863 (Name, File, Line, GetterName, SetterName, Attributes,
H A DDIBuilder.h356 StringRef SetterName,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h782 Selector SetterName; variable
808 SetterName(Selector()) {} in ObjCPropertyDecl()
914 Selector getSetterName() const { return SetterName; } in getSetterName()
918 SetterName = Sel;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaPseudoObject.cpp1509 UnqualifiedId SetterName; in buildSet() local
1511 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet()
1517 SourceLocation(), SetterName, nullptr); in buildSet()
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DDebugInfo.h722 const char *SetterName, size_t SetterNameLen,
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp906 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
907 if (!SetterName.empty()) in constructTypeDIE()
908 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseObjc.cpp744 IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
746 if (SetterName) in ParseObjCInterfaceDeclList()
747 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp1265 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local
1267 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()