Searched defs:GetterName (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/IR/
H A DDebugInfoMetadata.cpp532 MDString *GetterName, MDString *SetterName, unsigned Attributes,
535 assert(isCanonical(GetterName) && "Expected canonical MDString");
538 (getString(Name), File, Line, getString(GetterName),
540 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type};
530 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.cpp327 StringRef GetterName, StringRef SetterName,
329 return MDObjCProperty::get(VMContext, Name, File, LineNumber, GetterName,
326 createObjCProperty(StringRef Name, MDFile *File, unsigned LineNumber, StringRef GetterName, StringRef SetterName, unsigned PropertyAttributes, MDType *Ty) argument
H A DLLVMContextImpl.h778 StringRef GetterName; member in struct:llvm::MDNodeKeyImpl
784 StringRef GetterName, StringRef SetterName, unsigned Attributes,
786 : Name(Name), File(File), Line(Line), GetterName(GetterName),
790 GetterName(N->getGetterName()), SetterName(N->getSetterName()),
795 Line == RHS->getLine() && GetterName == RHS->getGetterName() &&
800 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
783 MDNodeKeyImpl(StringRef Name, Metadata *File, unsigned Line, StringRef GetterName, StringRef SetterName, unsigned Attributes, Metadata *Type) argument
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp1437 UnqualifiedId GetterName; local
1439 GetterName.setIdentifier(II, RefExpr->getMemberLoc());
1445 GetterName, nullptr);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1065 StringRef GetterName = Property->getGetterName(); local
1066 if (!GetterName.empty())
1067 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName);
/external/llvm/unittests/IR/
H A DMetadataTest.cpp1912 StringRef GetterName = "getter"; local
1917 auto *N = MDObjCProperty::get(Context, Name, File, Line, GetterName,
1924 EXPECT_EQ(GetterName, N->getGetterName());
1928 EXPECT_EQ(N, MDObjCProperty::get(Context, Name, File, Line, GetterName,
1931 EXPECT_NE(N, MDObjCProperty::get(Context, "other", File, Line, GetterName,
1933 EXPECT_NE(N, MDObjCProperty::get(Context, Name, getFile(), Line, GetterName,
1935 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line + 1, GetterName,
1939 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line, GetterName,
1941 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line, GetterName,
1943 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line, GetterName,
[all...]
/external/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2099 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2102 getCanonicalMDString(Context, GetterName),
2108 MDString *GetterName, MDString *SetterName,
2121 StringRef GetterName, StringRef SetterName,
2123 (Name, File, Line, GetterName, SetterName, Attributes,
2127 MDString *GetterName, MDString *SetterName,
2129 (Name, File, Line, GetterName, SetterName, Attributes,
2098 getImpl(LLVMContext &Context, StringRef Name, MDFile *File, unsigned Line, StringRef GetterName, StringRef SetterName, unsigned Attributes, MDType *Type, StorageType Storage, bool ShouldCreate = true) argument
/external/clang/include/clang/AST/
H A DDeclObjC.h2226 Selector GetterName; // getter name of NULL if no getter member in class:clang::ObjCPropertyDecl
2241 GetterName(Selector()),
2325 Selector getGetterName() const { return GetterName; }
2326 void setGetterName(Selector Sel) { GetterName = Sel; }
/external/clang/include/clang/Sema/
H A DDeclSpec.h811 GetterName(nullptr), SetterName(nullptr) { }
825 const IdentifierInfo *getGetterName() const { return GetterName; }
826 IdentifierInfo *getGetterName() { return GetterName; }
827 void setGetterName(IdentifierInfo *name) { GetterName = name; }
841 IdentifierInfo *GetterName; // getter name or NULL if no getter member in class:clang::ObjCDeclSpec

Completed in 370 milliseconds