Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp675 SmallString<64> SetterName("set"); in constructSetterName() local
676 SetterName += Name; in constructSetterName()
677 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
678 return SetterName; in constructSetterName()
685 IdentifierInfo *SetterName = in constructSetterSelector() local
687 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1124 MDString *SetterName;
1129 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1132 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
1135 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
1141 SetterName == RHS->getRawSetterName() &&
1146 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
H A DDebugInfoMetadata.cpp1541 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
1545 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
1547 SetterName, Attributes, Type)); in getImpl()
1548 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
H A DDIBuilder.cpp413 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
416 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1252 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1257 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h844 GetterName(nullptr), SetterName(nullptr) {} in ObjCDeclSpec()
897 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
898 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
901 SetterName = name; in setSetterName()
919 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h755 Selector SetterName; variable
780 SetterName(Selector()) {} in ObjCPropertyDecl()
890 Selector getSetterName() const { return SetterName; } in getSetterName()
894 SetterName = Sel;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h3217 StringRef GetterName, StringRef SetterName, unsigned Attributes,
3221 getCanonicalMDString(Context, SetterName), Attributes, Type,
3226 MDString *GetterName, MDString *SetterName,
3239 StringRef GetterName, StringRef SetterName,
3241 (Name, File, Line, GetterName, SetterName, Attributes,
3245 MDString *GetterName, MDString *SetterName,
3247 (Name, File, Line, GetterName, SetterName, Attributes,
H A DDIBuilder.h369 StringRef SetterName,
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h829 const char *SetterName, size_t SetterNameLen,
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp911 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
912 if (!SetterName.empty()) in constructTypeDIE()
913 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp756 IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
758 if (SetterName) in ParseObjCInterfaceDeclList()
759 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1306 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local
1308 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()