/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | IdentifierTable.cpp | 729 SmallString<64> SetterName("set"); in constructSetterName() local 730 SetterName += Name; in constructSetterName() 731 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName() 732 return SetterName; in constructSetterName() 739 IdentifierInfo *SetterName = in constructSetterSelector() local 741 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
|
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
H A D | API.h | 985 StringRef SetterName; member 993 StringRef GetterName, StringRef SetterName, in ObjCPropertyRecord() 998 Attributes(Attributes), GetterName(GetterName), SetterName(SetterName), in ObjCPropertyRecord() 1012 AttributeKind Attributes, StringRef GetterName, StringRef SetterName, in ObjCInstancePropertyRecord() 1016 SubHeading, Attributes, GetterName, SetterName, in ObjCInstancePropertyRecord() 1035 StringRef SetterName, bool IsOptional, in ObjCClassPropertyRecord() 1039 SubHeading, Attributes, GetterName, SetterName, in ObjCClassPropertyRecord()
|
H A D | ExtractAPIVisitor.h | 1393 auto SetterName = Property->getSetterName().getAsString(); in recordObjCProperties() local 1407 GetterName, SetterName, Property->isOptional(), in recordObjCProperties() 1415 GetterName, SetterName, Property->isOptional(), in recordObjCProperties()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 1221 MDString *SetterName; 1226 MDString *GetterName, MDString *SetterName, unsigned Attributes, 1229 SetterName(SetterName), Attributes(Attributes), Type(Type) {} 1232 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()), 1238 SetterName == RHS->getRawSetterName() && 1243 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
|
H A D | DebugInfoMetadata.cpp | 2269 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument 2273 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl() 2275 SetterName, Attributes, Type)); in getImpl() 2276 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
|
H A D | DIBuilder.cpp | 455 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument 458 SetterName, PropertyAttributes, Ty); in createObjCProperty()
|
H A D | DebugInfo.cpp | 1409 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument 1414 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | DeclSpec.h | 919 GetterName(nullptr), SetterName(nullptr) {} in ObjCDeclSpec() 972 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName() 973 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName() 976 SetterName = name; in setSetterName() 994 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaPseudoObject.cpp | 1422 UnqualifiedId SetterName; in buildSet() local 1424 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet() 1430 SourceLocation(), SetterName, nullptr); in buildSet()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 3590 StringRef GetterName, StringRef SetterName, unsigned Attributes, 3594 getCanonicalMDString(Context, SetterName), Attributes, Type, 3599 MDString *GetterName, MDString *SetterName, 3612 StringRef GetterName, StringRef SetterName, 3614 (Name, File, Line, GetterName, SetterName, Attributes, 3618 MDString *GetterName, MDString *SetterName, 3620 (Name, File, Line, GetterName, SetterName, Attributes,
|
H A D | DIBuilder.h | 449 StringRef SetterName,
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | DebugInfo.h | 867 const char *SetterName, size_t SetterNameLen,
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclObjC.h | 759 Selector SetterName; variable 892 Selector getSetterName() const { return SetterName; } in getSetterName() 896 SetterName = Sel;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfUnit.cpp | 985 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local 986 if (!SetterName.empty()) in constructTypeDIE() 987 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseObjc.cpp | 808 const IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local 810 if (SetterName) in ParseObjCInterfaceDeclList() 811 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 1481 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local 1483 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()
|