Home
last modified time | relevance | path

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

/external/clang/lib/Basic/
DIdentifierTable.cpp582 SmallString<64> SetterName("set"); in constructSetterName() local
583 SetterName += Name; in constructSetterName()
584 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
585 return SetterName; in constructSetterName()
592 IdentifierInfo *SetterName = in constructSetterSelector() local
594 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/external/llvm/lib/IR/
DLLVMContextImpl.h745 StringRef SetterName;
750 StringRef GetterName, StringRef SetterName, unsigned Attributes,
753 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
756 GetterName(N->getGetterName()), SetterName(N->getSetterName()),
762 SetterName == RHS->getSetterName() &&
766 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
DDebugInfoMetadata.cpp537 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
541 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
544 getString(SetterName), Attributes, Type)); in getImpl()
545 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
DDIBuilder.cpp336 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
339 SetterName, PropertyAttributes, in createObjCProperty()
/external/clang/include/clang/Sema/
DDeclSpec.h799 Nullability(0), GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec()
843 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
844 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
845 void setSetterName(IdentifierInfo *name) { SetterName = name; } in setSetterName()
861 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/external/llvm/unittests/IR/
DMetadataTest.cpp1930 StringRef SetterName = "setter"; in TEST_F() local
1935 SetterName, Attributes, Type); in TEST_F()
1942 EXPECT_EQ(SetterName, N->getSetterName()); in TEST_F()
1946 SetterName, Attributes, Type)); in TEST_F()
1949 SetterName, Attributes, Type)); in TEST_F()
1951 SetterName, Attributes, Type)); in TEST_F()
1953 SetterName, Attributes, Type)); in TEST_F()
1955 SetterName, Attributes, Type)); in TEST_F()
1959 SetterName, Attributes + 1, Type)); in TEST_F()
1961 SetterName, Attributes, in TEST_F()
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h2088 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2092 getCanonicalMDString(Context, SetterName), Attributes, Type,
2097 MDString *GetterName, MDString *SetterName,
2110 StringRef GetterName, StringRef SetterName,
2112 (Name, File, Line, GetterName, SetterName, Attributes,
2116 MDString *GetterName, MDString *SetterName,
2118 (Name, File, Line, GetterName, SetterName, Attributes,
DDIBuilder.h245 StringRef SetterName,
/external/clang/include/clang/AST/
DDeclObjC.h2456 Selector SetterName; // setter name of NULL if no setter variable
2472 SetterName(Selector()), in ObjCPropertyDecl()
2560 Selector getSetterName() const { return SetterName; } in getSetterName()
2561 void setSetterName(Selector Sel) { SetterName = Sel; } in setSetterName()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp1499 UnqualifiedId SetterName; in buildSet() local
1501 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet()
1507 SourceLocation(), SetterName, nullptr); in buildSet()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp963 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
964 if (!SetterName.empty()) in constructTypeDIE()
965 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/external/clang/lib/Parse/
DParseObjc.cpp783 IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
785 if (SetterName) in ParseObjCInterfaceDeclList()
786 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()