Searched defs:SetterName (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/IR/
H A DDebugInfoMetadata.cpp605 MDString *GetterName, MDString *SetterName, unsigned Attributes,
609 assert(isCanonical(SetterName) && "Expected canonical MDString");
611 SetterName, Attributes, Type));
612 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type};
603 getImpl( LLVMContext &Context, MDString *Name, Metadata *File, unsigned Line, MDString *GetterName, MDString *SetterName, unsigned Attributes, Metadata *Type, StorageType Storage, bool ShouldCreate) argument
H A DDIBuilder.cpp314 StringRef GetterName, StringRef SetterName,
317 SetterName, PropertyAttributes, Ty);
313 createObjCProperty(StringRef Name, DIFile *File, unsigned LineNumber, StringRef GetterName, StringRef SetterName, unsigned PropertyAttributes, DIType *Ty) argument
H A DLLVMContextImpl.h845 MDString *SetterName; member in struct:llvm::MDNodeKeyImpl
850 MDString *GetterName, MDString *SetterName, unsigned Attributes,
853 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
856 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
862 SetterName == RHS->getRawSetterName() &&
866 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
849 MDNodeKeyImpl(MDString *Name, Metadata *File, unsigned Line, MDString *GetterName, MDString *SetterName, unsigned Attributes, Metadata *Type) argument
/external/clang/lib/Basic/
H A DIdentifierTable.cpp583 SmallString<64> SetterName("set");
584 SetterName += Name;
585 SetterName[3] = toUppercase(SetterName[3]);
586 return SetterName;
593 IdentifierInfo *SetterName = local
595 return SelTable.getUnarySelector(SetterName);
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp1500 UnqualifiedId SetterName; local
1502 SetterName.setIdentifier(II, RefExpr->getMemberLoc());
1508 SourceLocation(), SetterName, nullptr);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DDIBuilder.cpp339 StringRef GetterName, StringRef SetterName,
355 MDString::get(VMContext, SetterName),
334 createObjCIVar(StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, DIType Ty, StringRef PropertyName, StringRef GetterName, StringRef SetterName, unsigned PropertyAttributes) argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp940 StringRef SetterName = Property->getSetterName(); local
941 if (!SetterName.empty())
942 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName);
/external/llvm/unittests/IR/
H A DMetadataTest.cpp1950 StringRef SetterName = "setter"; local
1955 SetterName, Attributes, Type);
1962 EXPECT_EQ(SetterName, N->getSetterName());
1966 SetterName, Attributes, Type));
1969 SetterName, Attributes, Type));
1971 SetterName, Attributes, Type));
1973 SetterName, Attributes, Type));
1975 SetterName, Attributes, Type));
1979 SetterName, Attributes + 1, Type));
1981 SetterName, Attribute
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1391 StringRef SetterName = DT.getObjCPropertySetterName(); local
1392 if (!SetterName.empty())
1394 dwarf::DW_FORM_string, SetterName);
/external/clang/include/clang/AST/
H A DDeclObjC.h742 Selector SetterName; // setter name of NULL if no setter member in class:clang::ObjCPropertyDecl
758 SetterName(Selector()),
857 Selector getSetterName() const { return SetterName; }
858 void setSetterName(Selector Sel) { SetterName = Sel; }
/external/clang/include/clang/Sema/
H A DDeclSpec.h818 Nullability(0), GetterName(nullptr), SetterName(nullptr) { }
862 const IdentifierInfo *getSetterName() const { return SetterName; }
863 IdentifierInfo *getSetterName() { return SetterName; }
864 void setSetterName(IdentifierInfo *name) { SetterName = name; }
880 IdentifierInfo *SetterName; // setter name or NULL if no setter member in class:clang::ObjCDeclSpec

Completed in 1165 milliseconds