Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DLLVMContextImpl.h844 MDString *GetterName;
850 MDString *GetterName, MDString *SetterName, unsigned Attributes,
852 : Name(Name), File(File), Line(Line), GetterName(GetterName),
856 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
861 Line == RHS->getLine() && GetterName == RHS->getRawGetterName() &&
866 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
DDebugInfoMetadata.cpp605 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
608 assert(isCanonical(GetterName) && "Expected canonical MDString"); in getImpl()
610 DEFINE_GETIMPL_LOOKUP(DIObjCProperty, (Name, File, Line, GetterName, in getImpl()
612 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
DDIBuilder.cpp314 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
316 return DIObjCProperty::get(VMContext, Name, File, LineNumber, GetterName, in createObjCProperty()
/external/clang/include/clang/Sema/
DDeclSpec.h818 Nullability(0), GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec()
858 const IdentifierInfo *getGetterName() const { return GetterName; } in getGetterName()
859 IdentifierInfo *getGetterName() { return GetterName; } in getGetterName()
860 void setGetterName(IdentifierInfo *name) { GetterName = name; } in setGetterName()
879 IdentifierInfo *GetterName; // getter name or NULL if no getter variable
/external/llvm/unittests/IR/
DMetadataTest.cpp1949 StringRef GetterName = "getter"; in TEST_F() local
1954 auto *N = DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
1961 EXPECT_EQ(GetterName, N->getGetterName()); in TEST_F()
1965 EXPECT_EQ(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
1968 EXPECT_NE(N, DIObjCProperty::get(Context, "other", File, Line, GetterName, in TEST_F()
1970 EXPECT_NE(N, DIObjCProperty::get(Context, Name, getFile(), Line, GetterName, in TEST_F()
1972 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line + 1, GetterName, in TEST_F()
1976 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
1978 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
1980 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h2176 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2179 getCanonicalMDString(Context, GetterName),
2185 MDString *GetterName, MDString *SetterName,
2198 StringRef GetterName, StringRef SetterName,
2200 (Name, File, Line, GetterName, SetterName, Attributes,
2204 MDString *GetterName, MDString *SetterName,
2206 (Name, File, Line, GetterName, SetterName, Attributes,
DDIBuilder.h254 StringRef GetterName,
/external/clang/include/clang/AST/
DDeclObjC.h741 Selector GetterName; // getter name of NULL if no getter variable
757 GetterName(Selector()), in ObjCPropertyDecl()
854 Selector getGetterName() const { return GetterName; } in getGetterName()
855 void setGetterName(Selector Sel) { GetterName = Sel; } in setGetterName()
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp1387 StringRef GetterName = DT.getObjCPropertyGetterName(); in createMemberDIE() local
1388 if (!GetterName.empty()) in createMemberDIE()
1390 dwarf::DW_FORM_string, GetterName); in createMemberDIE()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp937 StringRef GetterName = Property->getGetterName(); in constructTypeDIE() local
938 if (!GetterName.empty()) in constructTypeDIE()
939 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName); in constructTypeDIE()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp1471 UnqualifiedId GetterName; in buildGet() local
1473 GetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildGet()
1479 SourceLocation(), GetterName, nullptr); in buildGet()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DDIBuilder.cpp339 StringRef GetterName, StringRef SetterName, in createObjCIVar() argument
354 MDString::get(VMContext, GetterName), in createObjCIVar()