Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DIdentifierTable.cpp670 SmallString<64> SetterName("set"); in constructSetterName() local
671 SetterName += Name; in constructSetterName()
672 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
673 return SetterName; in constructSetterName()
680 IdentifierInfo *SetterName = in constructSetterSelector() local
682 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/netbsd-src/external/apache2/llvm/dist/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.cpp408 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
411 SetterName, PropertyAttributes, Ty); in createObjCProperty()
H A DDebugInfo.cpp1216 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1221 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/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;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h3214 StringRef GetterName, StringRef SetterName, unsigned Attributes,
3218 getCanonicalMDString(Context, SetterName), Attributes, Type,
3223 MDString *GetterName, MDString *SetterName,
3236 StringRef GetterName, StringRef SetterName,
3238 (Name, File, Line, GetterName, SetterName, Attributes,
3242 MDString *GetterName, MDString *SetterName,
3244 (Name, File, Line, GetterName, SetterName, Attributes,
H A DDIBuilder.h367 StringRef SetterName,
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DDebugInfo.h829 const char *SetterName, size_t SetterNameLen,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp910 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
911 if (!SetterName.empty()) in constructTypeDIE()
912 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1304 DeclarationName SetterName = Record.readDeclarationName(); in VisitObjCPropertyDecl() local
1306 D->setSetterName(SetterName.getObjCSelector(), SetterLoc); in VisitObjCPropertyDecl()